jupyter安装失败,问题出在rust环境和32位python

我使用python3.8-32安装jupyter notebook出现错误,排查出以下两个原因

pip install jupyter
......

Cargo, the Rust package manager, is not installed or is not on PATH.
......

首先需要安装rust,在

https://rustup.rs/

下载rustup-init.exe,运行,然后按照默认设置安装就可以了

jupyter安装失败,问题出在rust环境和32位python_第1张图片

进入这个界面,按下enter就可以完成安装了

接下来遇到另一个问题

maturin failed
    Caused by: Failed to build a native library through cargo

这个问题是因为和32位python不兼容,我安装了64位python3.8,再次运行pip安装即成功。

python3.8-64官网下载链接:

https://www.python.org/ftp/python/3.9.6/python-3.9.6-amd64.exe

你可能感兴趣的:(技术问题解决方案,python,jupyter)