简体   繁体   English

点子拒绝安装任何东西

[英]pip is refusing to install anything

So I'm trying to install twillio but when I try to install it it throws this error: 所以我正在尝试安装twillio,但是当我尝试安装它时会引发以下错误:

MY_DEVICE_NAME:~ MY_NAME$ pip install twillio
Collecting twillio
  Could not find a version that satisfies the requirement twillio (from versions: )
No matching distribution found for twillio
You are using pip version 10.0.0b2, however version 10.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
MY_DEVICE_NAME:~ MY_NAME$ pip install --upgrade pip
Collecting pip
  Using cached   https://files.pythonhosted.org/packages/0f/74/ecd13431bcc456ed390b44c8a6e917c1820365cbebcb6a8974d1cd045ab4/pip-10.0.1-py2.py3-none-any.whl
matplotlib 1.3.1 requires nose, which is not installed.
matplotlib 1.3.1 requires tornado, which is not installed.
matplotlib 1.3.1 has requirement numpy>=1.5, but you'll have numpy 1.8.0rc1 which is incompatible.
Installing collected packages: pip
  Found existing installation: pip 10.0.0b2
Uninstalling pip-10.0.0b2:

You are using pip version 10.0.0b2, however version 10.0.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.

After which I just get stuck in an infinite loop. 之后,我陷入了无限循环。 so what should I do? 所以我该怎么做?

You made a small mistake 你犯了个小错误

pip install twilio

You were trying pip install twillio 您正在尝试pip install twillio

Use the following:- 使用以下内容:

pip install --upgrade pip

or 要么

python -m pip install --upgrade pip

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM