Невозможно установить торичангер с пипсом - PullRequest
0 голосов
/ 13 февраля 2019

Я пытаюсь установить библиотеку toripchanger .

Я сделал один раз:

C:\Users\Machintruc>pip install toripchanger

Вывод:

Collecting toripchanger
Could not find a version that satisfies the requirement toripchanger (from versions: )
No matching distribution found for toripchanger
You are using pip version 18.0, however version 19.0.2 is available.
You should consider upgrading via the 'python -m pip install --upgrade pip' command.

Итак, яобновленный пункт:

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

output:

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 означает, что его больше не существует?

1 Ответ

0 голосов
/ 13 февраля 2019

Существует, но версия PyPi поддерживает только python3x.Вы можете проверить соответствующую PyPi страницу .Слева есть запись "Язык программирования", которая только lsits python::3.Вот почему ваш pip не может найти версию, соответствующую вашим настройкам.

Рассмотрите возможность использования виртуальных сред, если вам нужно использовать обе версии Python на одной машине

...