1,背景:在已有Python3的windows系统上安装jupyter notebook。根据官方指导命令如下If you have Python 3 installed (which is recommended):python3 -m pip install --upgrade pippython3 -m pip install jupy...
1,背景:
在已有Python3的windows系统上安装jupyter notebook。
根据官方指导命令如下
If you have Python 3 installed (which is recommended):
python3 -m pip install --upgrade pip python3 -m pip install jupyter
#after finished
#run:
jupyter notebook
2,当执行#python3 -m pip install --upgrade pip 时 报error:
Cannot remove entries from nonexistent file c:\intelpython3\lib\site-packages\easy-install.pth
3,网上前辈意见:
#remove掉setuptools canda.exe remove setuptools #The following packages will be REMOVED: #bleach #ipywidgets #jinja #notebook #pip #setuptools #wheel #...
4,Remove 掉之后重新install pip.
下载get-pip.py 放入c:\python3\Scripts\
https://bootstrap.pypa.io/get-pip.py
#excute python3 get-pip.py
python3 -m pip install --upgrade pip
5,Reinstall jupyter notebook
python3 -m pip install --upgrade pip python3 -m pip install jupyter
完成后可正常调用
本文标题为:Windows 下update pip 报错:Cannot remove entries from nonexistent file c:\intelpython3\lib\site-packa
基础教程推荐
- CentOS 7.5 安装 Python3.7 2023-09-03
- Python 中 Elias Delta 编码详情 2023-08-08
- 基于Python实现股票数据分析的可视化 2023-08-04
- Centos7下安装python环境 2023-09-04
- ubuntu 18 python3.6 的安装与 python2的版本切换 2023-09-03
- 四步教你学会打包一个新的Python模块 2022-10-20
- python的环境conda简介 2022-10-20
- centos系统 anaconda3(python3)安装pygrib 2023-09-04
- Python爬取当网书籍数据并数据可视化展示 2023-08-11
- Python基础学习之函数和代码复用详解 2022-09-02