无法 pip 安装 pystan
Can't pip install pystan
我不能 pip install fbprophet
也不能pip install pystan
。
我在 Windows 10 上使用 VS Code 和 Python 3.9.3 64 位。我还更新到最新版本的 Visual Studio 构建工具 (16.11.3)因为有人说,你至少需要 Visual Studio C++ 14.0 才能使用 pystan
.
Collecting pystan
Using cached pystan-3.2.0-py3-none-any.whl (13 kB)
Collecting clikit<0.7,>=0.6
Using cached clikit-0.6.2-py2.py3-none-any.whl (91 kB)
Collecting aiohttp<4.0,>=3.6
Using cached aiohttp-3.7.4.post0-cp39-cp39-win_amd64.whl (634 kB)
Collecting pysimdjson<4.0,>=3.2
Using cached pysimdjson-3.2.0-cp39-cp39-win_amd64.whl (157 kB)
ERROR: Could not find a version that satisfies the requirement httpstan<4.6,>=4.5 (from pystan) (from versions: 0.2.5, 0.3.0, 0.3.1, 0.4.0, 0.5.0, 0.6.0, 0.7.2, 0.7.3, 0.7.5, 0.7.6, 0.8.0, 0.9.0, 0.10.1)
ERROR: No matching distribution found for httpstan<4.6,>=4.5 (from pystan)
同时尝试安装 httpstan 也不起作用,而且还给我更多的错误。
我见过有人使用 conda/anaconda,但我不使用它。
任何帮助表示赞赏。
问题出在安装 httpstan
中。您正在使用 Windows,但根据其 pypi
page it only supports Linux and MacOS. This is confirmed by the list of wheels。
您可以使用 VM 或 docker 绕过此问题,这两者都超出了此问题的范围,因此请尝试研究一下。
我不能 pip install fbprophet
也不能pip install pystan
。
我在 Windows 10 上使用 VS Code 和 Python 3.9.3 64 位。我还更新到最新版本的 Visual Studio 构建工具 (16.11.3)因为有人说,你至少需要 Visual Studio C++ 14.0 才能使用 pystan
.
Collecting pystan
Using cached pystan-3.2.0-py3-none-any.whl (13 kB)
Collecting clikit<0.7,>=0.6
Using cached clikit-0.6.2-py2.py3-none-any.whl (91 kB)
Collecting aiohttp<4.0,>=3.6
Using cached aiohttp-3.7.4.post0-cp39-cp39-win_amd64.whl (634 kB)
Collecting pysimdjson<4.0,>=3.2
Using cached pysimdjson-3.2.0-cp39-cp39-win_amd64.whl (157 kB)
ERROR: Could not find a version that satisfies the requirement httpstan<4.6,>=4.5 (from pystan) (from versions: 0.2.5, 0.3.0, 0.3.1, 0.4.0, 0.5.0, 0.6.0, 0.7.2, 0.7.3, 0.7.5, 0.7.6, 0.8.0, 0.9.0, 0.10.1)
ERROR: No matching distribution found for httpstan<4.6,>=4.5 (from pystan)
同时尝试安装 httpstan 也不起作用,而且还给我更多的错误。 我见过有人使用 conda/anaconda,但我不使用它。 任何帮助表示赞赏。
问题出在安装 httpstan
中。您正在使用 Windows,但根据其 pypi
page it only supports Linux and MacOS. This is confirmed by the list of wheels。
您可以使用 VM 或 docker 绕过此问题,这两者都超出了此问题的范围,因此请尝试研究一下。