sudo easy_install pip无法正常工作

时间:2018-05-31 03:03:21

标签: python pip easy-install

我在Mac上执行sudo easy_install pip命令时遇到问题。我不在防火墙后面。我正在使用python版本2.7.10。 macOS Sierra的版本是10.12.4。这是我收到的错误:

Searching for pip
Reading https://pypi.python.org/simple/pip/
Download error on https://pypi.python.org/simple/pip/: [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:590) -- Some packages may not be found!
Couldn't find index page for 'pip' (maybe misspelled?)
Scanning index of all packages (this may take a while)
Reading https://pypi.python.org/simple/
Download error on https://pypi.python.org/simple/: [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protocol version (_ssl.c:590) -- Some packages may not be found!
No local packages or download links found for pip
error: Could not find suitable distribution for Requirement.parse('pip')

1 个答案:

答案 0 :(得分:1)

我找到了使用// Get an instance of the product variation from a defined ID $child_product = wc_get_product(child_id); // Change the product visibility $child_product->set_catalog_visibility('visible'); // Save and sync the product visibility $child_product->save(); 安装brew的解决方案。找到了解决方案here,但我只需要使用pyenv时的部分。

pip

完成这些步骤后,我再次运行了# Install PyEnv (https://github.com/pyenv/pyenv#installation) $ brew update $ brew install pyenv # Initialize pyenv using bash_profile $ echo -e 'if command -v pyenv 1>/dev/null 2>&1; then\n eval "$(pyenv init -)"\nfi\nexport PATH="~/.pyenv/bin:$PATH"' >> ~/.bash_profile # or using zshrc $ echo -e 'if command -v pyenv 1>/dev/null 2>&1; then\n eval "$(pyenv init -)"\nfi\nexport PATH="~/.pyenv/bin:$PATH"' >> ~/.zshrc # restart the shell $ exec "$SHELL" # Install Python 2.7 $ pyenv install 2.7.14 $ pyenv local 2.7.14 和eureka!有效。

相关问题