无法使用管道安装toripchanger

2024-10-05 14:21:53 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在尝试安装库toripchanger。在

我做过一次:

C:\Users\Machintruc>pip install toripchanger

输出:

^{pr2}$

所以我更新了pip:

C:\Users\Machintruc>python -m pip install --upgrade pip
Collecting pip
Downloading https://files.pythonhosted.org/packages/d7/41/34dd96bd33958e52cb4da2f1bf0818e396514fd4f4725a79199564cd0c20/pip-19.0.2-py2.py3-none-any.whl (1.4MB)

100% |################################| 1.4MB 437kB/s
Installing collected packages: pip
  Found existing installation: pip 18.0
    Uninstalling pip-18.0:
      Successfully uninstalled pip-18.0
Successfully installed pip-19.0.2

我再次尝试安装:

C:\Users\Machintruc>pip install toripchanger

输出:

DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. 
A future version of pip will drop support for Python 2.7.
Collecting toripchanger
Could not find a version that satisfies the requirement toripchanger (from versions: )
No matching distribution found for toripchanger

我不确定升级Python是否有用,另外我也不会调试我所有的脚本,因为我升级了Python,2020到今天还很远。 No matching distribution found for toripchanger是否意味着它不再存在?在


Tags: installpipoftheforthatpackagesmb
1条回答
网友
1楼 · 发布于 2024-10-05 14:21:53

它存在,但是PyPi版本只支持python3x。在左边有一个条目“Programming Language”,它只有lsits python::3。这就是您的pip找不到与您的设置匹配的版本的原因。在

如果需要在同一台计算机上使用两个python版本,请考虑使用虚拟环境

相关问题 更多 >