Python:如何将 django-extensions 安装到 virtualenv 中?
我创建了一个带有 -no-sitepackages 的 virtualenv 。我想将 django-extensions 安装到此 virtualenv 中。问题是当我运行时:
python setyp.py install
从 virtualenv 内部,它创建并写入
/usr/local/lib/python2.6/dist-packages/django_extensions-0.4.1.egg-info.
What's the right way to get django-extensions into a virtualenv?
谢谢。
I've created a virtualenv with -no-sitepackages. I'd like to install django-extensions into this virtualenv. The thing is when I run:
python setyp.py install
from within the virtualenv, it creates and writes to
/usr/local/lib/python2.6/dist-packages/django_extensions-0.4.1.egg-info.
What's the correct way to get django-extensions into a virtualenv?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
运行
pip install -E your_virtualenv_here django-extensions
,然后激活即可。Run
pip install -E your_virtualenv_here django-extensions
, then just activate and you're set.您确定您已经激活了 virtualenv 吗?通常您使用
source/bin/activate
。还要检查 $VIRTUAL_ENV 环境变量。Are you sure you have activated your virtualenv? Usually you use
source <virtualenv_path>/bin/activate
. Check for a $VIRTUAL_ENV environment variable as well.