'HTTP Error 403: SSL is required' 关于使用 Ubuntu shell
'HTTP Error 403: SSL is required' on using Ubuntu shell
因此,我正在使用 here 中的说明在我的 PC 上手动安装 StarCluster,但出现此错误:
urllib.error.HTTPError:HTTP 错误 403:需要 SSL
IMAGE
我该怎么办?
Starcluster官方python project page表示不支持Python3。它支持 Python2.6 和 Python2.7
可以使用 pip 安装软件包。这有一些先决条件。
$ sudo apt-get install build-essential python python-dev python-openssl
安装完这些软件包后,您应该可以安装 StarCluster。
$ sudo pip install StarCluster
如果您在 python 虚拟环境中工作。你不需要 sudo
$ pip install StarCluster
因此,我正在使用 here 中的说明在我的 PC 上手动安装 StarCluster,但出现此错误:
urllib.error.HTTPError:HTTP 错误 403:需要 SSL
IMAGE
我该怎么办?
Starcluster官方python project page表示不支持Python3。它支持 Python2.6 和 Python2.7
可以使用 pip 安装软件包。这有一些先决条件。
$ sudo apt-get install build-essential python python-dev python-openssl
安装完这些软件包后,您应该可以安装 StarCluster。
$ sudo pip install StarCluster
如果您在 python 虚拟环境中工作。你不需要 sudo
$ pip install StarCluster