Django 虚拟环境
我有一些关于 virtualenv 的一般问题。
我在网上找到了一些关于 virtualenv 的文档,尽管我认为我的设置没有正确安装某些内容。
基本上我正在考虑将我的应用程序分离到它们自己的目录中,并且我想开始升级 django 和某些其他功能以部署到服务器。
所以我已经根据这个 --no-site-packages 安装了 virtualenv
pip install virtualenv
设置我的新 virtualenv
mkdir virt_env
vitualenv virt_env/virt1 --no-site-packages
你的安装应该只包含基础知识。
我已经激活了 virtualenv
source virt_env/virt1/bin/activate
,然后运行 yolk -l 来查看安装了哪些软件包。 结果似乎不仅仅是基础知识,因为我以前的所有插件仍然列出。
我什至尝试停用
,将目录更改为名为virt1
的环境,反应性然后再次运行yolk -l
。
它仍然列出了我所有的包裹。
这是正常现象,还是我做错了什么?
I have a few questions regarding virtualenv in general.
I have found some documentation online about virtualenv, although I don't think my setup is installing something correctly.
Basically I am looking at seperating my applications into their own directories and I want to start upgrading django and certain other features for deployment to the servers.
So I have gone and installed virtualenv
pip install virtualenv
setup my new virtualenv
mkdir virt_env
vitualenv virt_env/virt1 --no-site-packages
according to this --no-site-packages your installation should only have the basics in it.
I have activated my virtualenv
source virt_env/virt1/bin/activate
and then ran yolk -l
to see what packages are installed.
the result seems to be a lot more than just the basics as all my previous addons are still listed.
I have even tried to deactivate
, change directory into the environment called virt1
, reactive and then run yolk -l
again.
Still it lists all my packages.
Is this normal, or am I doing something wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的是安装在 virtualenv 中的 yolk 还是全局 yolk 安装?
我真的建议您看一下 virtualenvwrapper[0],这是一组可以帮助您管理 virtualenv 的扩展。
干杯!
[0] http://www.doughellmann.com/projects/virtualenvwrapper/
Are you using a yolk installed in your virtualenv or the global yolk installation?
I really suggest you to take a look at virtualenvwrapper[0] which is a set of extensions that help you on managing your virtualenvs.
Cheers!
[0] http://www.doughellmann.com/projects/virtualenvwrapper/