gpt4 book ai didi

python - 相同系统上不同版本的 python 请求

转载 作者:行者123 更新时间:2023-12-04 19:21:10 24 4
gpt4 key购买 nike

我有两个虚拟机,都运行 Ubuntu 12.04.3 LTS

 $ cat /etc/issue
Ubuntu 12.04.3 LTS \n \l

我已经通过 apt-get 在两个系统上安装了 python-requests。但是,在一个 VM 上,我有 1.2.3 版本和另一个 0.8.2 ..
>>> requests.__file__
'/usr/local/lib/python2.7/dist-packages/requests/__init__.pyc'
>>> requests.__version__
'1.2.3'

另一个系统:
>>> requests.__file__
'/usr/lib/python2.7/dist-packages/requests/__init__.pyc'
>>> requests.__version__
'0.8.2'

怎么会这样?我可能做了什么导致这种情况?

我可以看到 文件 表示较新的版本位于/usr/local 中,这可以给出问题的任何提示吗?

最佳答案

这是由于安装了 python-requests 引起的

$ pip install requests

在具有较新版本的 VM 上。这将它放在/usr/local 中,并且该目录是一个优先的 Python 路径。

关于python - 相同系统上不同版本的 python 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18467463/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com