I need to download the git python repository and install, since the pypi version is not updating.
Normally I would do this:
pip install mypackage
pip install mypackage[redis]
Now I have a repo cloned in the following folder:
/ wholesale / MyPackage
So, how do I run to install below without using the pypi version but the local one?
pip --flag /opt/mypackage install mypackage
pip --flag /opt/mypackage install mypackage[redis]
Pip flags are available and I donβt see how to do this:
Commands:
install Install packages.
uninstall Uninstall packages.
freeze Output installed packages in requirements format.
list List installed packages.
show Show information about installed packages.
search Search PyPI for packages.
wheel Build wheels from your requirements.
help Show help for commands.
General Options:
-h,
-v,
-V,
-q,
Tampa source
share