我在PyCharm中创建了VirtualEnv来安装我的Python软件包。我想从GitHub安装django项目的这个fork。
https://github.com/django-nonrel/django
对于PyPI提供的软件包,我通常会使用PyCharm中的内置搜索工具,但是我不确定如何从GitHub将其正确安装到PyCharm中的VirtualEnv中。有人知道该怎么做吗?
请参阅Gord Thompson的答案以获取与Pycharm配合使用的方法。
这是一种在没有它的情况下如何使其工作的替代方法:
克隆存储库:
git clone https://github.com/django-nonrel/django.git my_folder
将其手动安装到您的virtualenv中:
cd my_folder python setup.py build python setup.py install