By default pip installs editable packages into src
subdirectory of the directory where Python is installed.
I'd like to install a package from version control to a directory of my choosing using pip's support for checking out a package from source control, for example:
pip install -e git+https://github.com/kennethreitz/requests.git@355b97165c#egg=requests-org
Is this possible?
pip help install
says:For example:
Will install the requests source in
/tmp/requests-org