会出现“yum install django”吗?覆盖现有的 django 版本
我想更新我的 vagrant box 上的 django(并且不需要或不想使用 virtualenv)
一个简单的 yum install django 就足够了吗?
I want to update the django on my vagrant box (and have no need or desire to use virtualenv)
will a simple yum install django
suffice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用 pip 安装 python 包?
如果你的 vagrant 机器中没有 pip,你可以将这一行添加到你的菜谱文件中:
有了 pip 之后,你可以运行
获取最新版本,或者你也可以指定一个版本:
再想一想,我有一个 django_blank 项目在 github 中使用 django 和 vagrant !如果您需要一些食谱,可以从那里免费获取:
https://github.com/arthurnn/django_blank/blob /master/cookbooks/vagrant_main/recipes/default.rb
why dont u use pip to install python packages?
if you dont have pip in your vagrant machine you can just add this line to your recipes file:
After having pip you can just run
To get the latest version or you can also specify a version:
Just one more think, I have a django_blank project in github using django and vagrant ! if you need some recipe fell free to get it from there:
https://github.com/arthurnn/django_blank/blob/master/cookbooks/vagrant_main/recipes/default.rb