会出现“yum install django”吗?覆盖现有的 django 版本

发布于 2025-01-01 05:44:52 字数 98 浏览 2 评论 0原文

我想更新我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

丘比特射中我 2025-01-08 05:44:52

为什么不使用 pip 安装 python 包?

如果你的 vagrant 机器中没有 pip,你可以将这一行添加到你的菜谱文件中:

require_recipe "python::pip"

有了 pip 之后,你可以运行

pip install Django

获取最新版本,或者你也可以指定一个版本:

pip install Django==1.3.1

再想一想,我有一个 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:

require_recipe "python::pip"

After having pip you can just run

pip install Django

To get the latest version or you can also specify a version:

pip install Django==1.3.1

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文