问题描述:
原先使用Anaconda环境,若卸载后仍不能恢复到系统默认的Python环境。
解决方案:
shell 寻找缓存路径,python的扩展/home/tom/anaconda/bin/python仍在缓存内。
很简单,清理下python缓存即可。
hash -d python
一旦清理,bash 将会再次扫描电脑的PATH路径来寻找/usr/bin/python。
或者:hash -r 清理所有的缓存。
问题描述:
原先使用Anaconda环境,若卸载后仍不能恢复到系统默认的Python环境。
解决方案:
shell 寻找缓存路径,python的扩展/home/tom/anaconda/bin/python仍在缓存内。
很简单,清理下python缓存即可。
hash -d python
一旦清理,bash 将会再次扫描电脑的PATH路径来寻找/usr/bin/python。
或者:hash -r 清理所有的缓存。