记录一次憨憨把jupyter搞坏半天修不好背后被迫重装anaconda的经历QAQ
1 彻底清除Anaconda
(1)首先打开anaconda的安装目录,删除两个文件夹envs和pkgs
(2)使用uninstall-Anaconda3.exe卸载
(3)使用杀毒软件全面清理垃圾,顺带会把参与注册表信息也会删掉
(4)使用everything把anaconda,jupyter等相关文件全部删除
(5)删除相应的环境变量
2 重新安装
(因为平时为了偷懒,pycharm和anaconda用的同一个内核。所以安装anaconda时记得将其安装回原路径,同时吧添加环境变量和优先级最高给勾上,避免之前的py程序集体失效都得重新搭环境)
3 重新搭环境
(1)安装tensorflow和keras(cuDNN8.1;CUDA11.2)
pip install tensorflow-gpu==2.6.0 -i https://pypi.douban.com/simple/
pip install keras==2.6.0
(2)安装pytorch(CUDA11.2)
pip3 install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu112
标签:重装,记录,Anaconda,install,anaconda,安装,2.6 From: https://www.cnblogs.com/rachel0701/p/16856231.html