Install Python Module Directly

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 git+https://github.com/enzoampil/fastquant.git@master#egg=fastquant