No module named 'pylab'解决

今天我需要使用pylab模块
但是报错:No module named ‘pylab’

上网找了很多的方法

sudo apt-get install python-numpy python-scipy python-matplotlib 

sudo apt-get install python3-numpy python3-scipy python3-matplotlib 

都不能解决我的问题,因为我所使用的sublime text的python解释器地址设置在anaconda3/bin中,所以我必须在anaconda环境下安装numpy和scipy和matplotlib

因此我尝试使用命令

conda install numpy
conda install scipy
conda install matplotlib

终于解决问题

你可能感兴趣的:(错误集锦)