使用 pip 从 Git 存储库安装不可编辑的标签/分支
我想使用 pip 并且似乎无法找出如何做到这一点。
如果我这样做:
pip install git+git://github.com/django/[email protected]#egg=django
它只会安装 Django master
分支,而不是 1.2.5
标记。我知道我可以使用 -e 选项安装它,但我不想用我不修改的包填充我的 src 目录。这看起来应该是一件很简单的事情,但我似乎不知道该怎么做......
这可能吗?如果是这样,我怎样才能实现它?
感谢您的任何答复!
I would like to install a non-editable (e.g. no -e
option) tag or branch from a Git repo using pip and cannot seem to find out how to do it.
If I do this:
pip install git+git://github.com/django/[email protected]#egg=django
It just installs Django master
branch and not the 1.2.5
tag. I know that I can install it using the -e
option but I don't want to fill up my src
dir with packages I am not modifying. This seems like it should be straightforward thing to do but I can't seem how to do it...
Is this possible? If so, how can I accomplish it?
Thanks for any answers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能使用的是旧的 pip 版本。尝试升级您的 pip:
有一个问题,我刚刚尝试了 0.8 版本。 2(目前最新的)并且它有效;-)
You are probably using an old pip version. Try upgrading your pip:
There was an issue to it, and I just tried version 0.8.2 (the latest at the moment) and it works ;-)