无法安装“点子”

时间:2019-01-10 17:39:11

标签: python bash pip

因此,我正在尝试下载grpc.io网站上提供的gRPC pip。我读了许多与此有关的问题,但仍然无法下载点子。我将Mac与python(2.7.10版)一起使用。

当我在控制台上写点子时。它给出以下错误: bash: pip: command not found

我检查了几个问题,他们推荐了easy_install pip,但还是没有用。

我的一位同事建议使用brew install pip,因为我们几乎已使用brew安装了所有东西。这样做时,出现以下错误。

Error: No available formula with the name "pip" Homebrew provides pip via:简要安装python . However you will then have two Pythons installed on your Mac, so alternatively you can install pip via the instructions at: https://pip.readthedocs.io/en/stable/installing/

我继续执行此链接,并说要运行curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py,然后再运行此python get-pip.py

我这样做了,但它给出了以下内容:

Collecting pip
Using cached https://files.pythonhosted.org/packages/c2/d7/90f34cb0d83a6c5631cf71dfe64cc1054598c843a92b400e55675cc2ac37/pip-18.1-py2.py3-none-any.whl
Installing collected packages: pip
Found existing installation: pip 18.1
Uninstalling pip-18.1:
Successfully uninstalled pip-18.1
Rolling back uninstall of pip
Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/pip'
Consider using the `--user` option or check the permissions. 

你们都可以建议一种下载和使用点子的方法吗?

更新

我之前尝试使用 sudo easy_install pip 进行安装,但出现错误。现在我尝试这样做,它已经安装。谢谢大家的帮助。

1 个答案:

答案 0 :(得分:1)

请遵循以下步骤:

  1. 转到pypi website点子官方帐户。
  2. 下载源文件。 pip-18.1.tar.gz
  3. 提取文件。
  4. 在命令提示符下运行命令:         python setup.py install

pip已安装。