sudo -u <username>/lm/tools/extern/python/libs/lmdata33-env/bin/pip-3.3 install requests
Downloading/unpacking requests
Cannot fetch index base URL http://pypi.python.org/simple/
Could not find any downloads that satisfy the requirement requests
No distributions at all found for requests
Storing complete log in /home/lmbuild1/.pip/pip.log
其他信息:无法获取网址http://pypi.python.org/simple/pip:HTTP错误403:需要SSL
答案 0 :(得分:1)
您正在使用旧版本的pip尝试通过纯HTTP连接到PyPI。这是不安全的,一直是不安全的,因此PyPI started disallowing plain HTTP requests a week ago。您需要升级您的pip版本才能解决此问题。如果您的操作系统软件包管理器未提供更新版本的pip,则可以通过下载these instructions并运行python get-pip.py
来关注https://bootstrap.pypa.io/get-pip.py。