vscode ssh链接ubuntu使用jupyter notebook 报错 could not be imported from ‘5.9.3 instead of 5.9.4’.
最近在使用vscode远程链接服务器使用jupyter notebook会报错,后来发现是 pip 里面安装了一个 psutil 5.9.4 conda 里面 安装了 psutil5.9.3。
如果卸载掉conda的5.9.3,仍会发生同样的报错。反之,卸载pip的5.9.4则会报出module ‘psutil’ has no attribute ‘Process’.
解决方案: 使用pip uninstall psutil把5.9.4和5.9.3版本全部删除。再用conda install psutil。这时不管是下载5.9.4还是5.9.3就都可以运行了