我正在尝试从私人存储库中进行安装。我可以从我的存储库中复制克隆,然后推入和拉出,效果很好,所以我认为我的公钥和私钥很好,我已经阅读了很多,但似乎无法解决该错误。
使用Mac,这是我正在尝试的方法。
(venv) Mac:Projects$ pip install git+ssh://git@github.com/private_repo/git_stuff.git#egg=git_stuff
错误:
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: '/private/var/folders/3d/s4d37gtgd1dfgfg18tmfd_nvsdfr1111gn/x/pip-install-abcdfs/git-stuff/setup.py'
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/3d/s4d37gtgd1dfgfg18tmfd_nvsdfr1111gn/x/pip-install-7RccWF/git-stuff/
项目上的setup.py文件
setuptools.setup(
name="git_stuff",
version="0.0.1",
author="Example Author",
author_email="test.com",
description="A small example package",
url="https://github.com/private_repo/git_stuff.git",
packages=setuptools.find_packages(),
)
我尝试过的事情:
Python版本2.7.10