默认情况下,pip 将可编辑的包安装到src
Python 安装目录的子目录中。
我想将版本控制中的包安装到我选择的目录中,使用 pip 支持从源代码控制中检出包,例如:
pip install -e git+https://github.com/kennethreitz/requests.git@355b97165c#egg=requests-org
这可能吗?
默认情况下,pip 将可编辑的包安装到src
Python 安装目录的子目录中。
我想将版本控制中的包安装到我选择的目录中,使用 pip 支持从源代码控制中检出包,例如:
pip install -e git+https://github.com/kennethreitz/requests.git@355b97165c#egg=requests-org
这可能吗?
pip help install
说:
--src=DIR, --source=DIR, --source-dir=DIR, --source-directory=DIR
Check out --editable packages into DIR
例如:
pip install -e git+https://github.com/kennethreitz/requests.git@355b97165c#egg=requests-org --source-directory=/tmp
将请求源安装在/tmp/requests-org