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 More