Jupyter notebook 报错 ImportError
2019-03-05 本文已影响0人
吃货一枚儿
jupyter notebook
报错 ImportError: No module named livelossplot
报错 ImportError: No module named matplotlib

解决办法:
第一,打开CMD 输入 conda info --envs
结果显示

第二,激活tensorflow,输入activate tensorflow
结果显示

第三,用pip安装livelossplot模块或者matplotlib模块
输入pip install livelossplot
或 pip install matplotlib
安装完后即可解决
亲测