Sometimes, python modules in pypi.org is outdated a little bit but it's source code has already fixed what you wanted. You can install the said module directly using: 1## git clone the module-name from its repo, then 2python -m pip install -e ./module-name or in one line (replace the repo accordingly): 1pip install -e …
Read MoreBest approach in doing development in any language is to have an isolated dev environment. In python, we do it this way: 1python3 -m venv env 2source ./env/bin/activate See more options in https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/
Read More