我有一些django包,比如
django-oscar
。我需要用pip安装它,然后编辑代码&修改
我试图通过
setup.py deploy
并使
.egg-info
。然后我明白pip没有安装软件包的功能
.egg信息
.
我还尝试使用
-e /path/to/package
,但pip不允许我从目录安装。它告诉我:
--editable=src/django-oscar-master/oscar/ should be formatted with svn+URL, git+URL, hg+URL or bzr+URL
然后我尝试通过
pip install django-oscar --no-index --find-links=file://src/django-oscar-master/
以及类似的命令。它总是告诉我:
Could not find any downloads that satisfy the requirement django-oscar
如何安装不在中的包
site-packages
virtualenv和put命令
requirements.txt
将从本地目录安装此软件包?