我想在我的测试项目中使用包含json模式的github存储库。
我正在尝试安装它:
pip install git+https://github.com/org/repo.git
Collecting git+https://github.com/org/repo.git
Cloning https://github.com/org/repo.git to /var/folders/7v/yqj59phx3q71thk7b9819nlm0000gn/T/pip-6UQL0O-build
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
IOError: [Errno 2] No such file or directory: '/var/folders/7v/yqj59phx3q71thk7b9819nlm0000gn/T/pip-6UQL0O-build/setup.py'
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /var/folders/7v/yqj59phx3q71thk7b9819nlm0000gn/T/pip-6UQL0O-build/
第一个问题:为什么要克隆到此文件夹而不是/Users/raitis/.virtualenvs/someenvironment/bin/python
?
第二个问题:如果我想用pip安装它,我是否需要在存储库中安装setup.py文件?
注意:我可以使用pip安装它后,我会将它添加到requirements.txt
答案 0 :(得分:1)
是的,你需要一个setup.py来安装你的lib。
Pip首先克隆您的repo,然后在您的虚拟环境中尝试python setup.py install
。
这与从tar.gz安装时完全相同:首先,下载它(相当于git clone),然后安装它(python setup.py)