安装Jupyter时,Pywinpty总是失败的原因和解决方法!

win7 64位系统上安装Jupyter,路径也应该64位的Python,32位的Python的pywinptyg一直无法安装上。(我的win7有Python3.8的64位和32位,单位电脑配置差)

用传统的安装命令:pip install jupyter.总是在pywinpty这个模块安装时出现错误,安装了好几天,一直这样,后来从https://www.lfd.uci.edu/~gohlke/pythonlibs/#pywinpty,下载这个库,也无法安装。

后来改变安装路径后,终于成功了。选择的是64位Python文件

命令如下:

Jupyter lab
使用以下命令安装 JupyterLab:
D:\Python64\python.exe -m pip install -i https://pypi.douban.com/simple/ jupyter
D:\Python64\python.exe -m pip install -i https://pypi.douban.com/simple/ jupyterlab
安装后,使用以下命令启动 JupyterLab:
D:\Python64\python.exe -m jupyterlab

安装Jupyter时,Pywinpty总是失败的原因和解决方法!_第1张图片

 

Jupyter Notebook
使用以下命令安装经典的 Jupyter Notebook:
D:\Python64\python.exe -m pip install -i https://pypi.douban.com/simple/ notebook
要运行笔记本:
D:\Python64\python.exe -m notebook

安装Jupyter时,Pywinpty总是失败的原因和解决方法!_第2张图片

 


安装Voilà:
D:\Python64\python.exe -m pip install -i https://pypi.douban.com/simple/ voila
安装后,使用以下命令启动 Voilà:
D:\Python64\python.exe -m voila

你可能感兴趣的:(jupyter,python,ubuntu)