当前位置: 代码迷 >> 综合 >> 【jupyter notebook】Cannot uninstall ‘terminado‘. It is a distutils installed project and thus we cann
  详细解决方案

【jupyter notebook】Cannot uninstall ‘terminado‘. It is a distutils installed project and thus we cann

热度:85   发布时间:2023-11-21 00:25:29.0

由于jupyter notebook默认白色主题太亮了 伤眼 于是想换深色主题:

pip install jupyterthemes

遇到错误:Cannot uninstall 'terminado'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.

网上查到原因可能是因为notebook是conda装的,用pip装会有问题。

【尝试1 失败】

于是用conda安装jupyterthemes 或尝试卸载terminado 但是conda速度极慢 Solving environment: / 能卡半天 等不及

【尝试2 失败】

尝试卸载重装anaconda 还是一样

【尝试3 失败】

尝试在Anaconda Navigator中卸载terminado 但是附带一堆主要的东西 比如conda notebook也要一起卸载掉。。。

谜 其他两个win10电脑 安装同样版本的anaconda 明明没这个问题 不知道是什么原因

网上查了好多方案 基本都是通过conda命令解决 但是我的conda命令不知道为什么慢的一批 怎么也跑不出来

【尝试4 成功】

尝试在pip命令中加入--user(只针对当前用户):

pip install --user jupyterthemes

安装成功了,但是说C:\Users\{用户名}\AppData\Roaming\Python\Python36\Scripts不在环境变量里,这个手动添加一下就行了。

然后换主题 看能否成功

jt -t onedork -T -N

终于看到了熟悉的深色主题:

折腾一晚上 终于成功了 太艰难了。。。 莫名其妙的bug

  相关解决方案