安装了pytorch,程序报错,找不到指定的模块,使用以下方式在anaconda中重新安装了一遍,就可以了。
conda install pytorch-cpu torchvision-cpu -c pytorch
numpy已经更新到最新了,但程序中仍报错
ImportError: this version of pandas is incompatible with numpy < 1.13.3
your numpy version is 1.11.3.
Please upgrade numpy to >= 1.13.3 to use this pandas version
查看一下numpy版本,发现仍是老版本,删除老版本
pip uninstall numpy
再重新安装
pip install numpy