作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试在系统中安装不同版本的 django,它显示了我:
Installing collected packages: Django
Found existing installation: Django 1.7.11
Not uninstalling django at /home/user/lib/python2.7, outside environment /home/user/webapps/v2_dev/venv
./venv/bin/pip install Django==1.8.11
pip install Django==1.8.11
The required version of setuptools (>=16.0) is not available,
and can't be installed while this script is running. Please
install a more recent version first, using
'easy_install -U setuptools'.
(Currently using setuptools 3.1 (/home/user/lib/python2.7/setuptools-3.1-py2.7.egg))
venv/bin/pip install --upgrade setuptools
Requirement already up-to-date: setuptools in ./venv/lib/python2.7/site-packages (40.5.0)
最佳答案
我在寻找如何在 virtualenv 中强制安装某些东西时到达这篇文章,尽管它已经安装在全局 python 中。当使用 --system-site-packages
创建虚拟环境时会发生这种情况。 .
在这种情况下,对于某些包,在 virtualenv 中有一个本地版本可能很重要,即使对于许多其他包我们可以共享全局版本。 pytest
就是这种情况, 例如。但是,如果 pip 已经可以在系统站 pip 中找到最新版本,则 pip 将拒绝在 virtualenv 中安装软件包。
解决方法是使用pip install --ignore-installed mypackage
.
关于python - 如何在virtualenv中强制安装包?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53078059/
我是一名优秀的程序员,十分优秀!