解决问题:ImportError: Missing required dependencies [‘numpy‘]
重新安装系统以后,打开pycharm运行之前的程序时遇到了这个问题

首先的问题是重装系统以后电脑开始菜单里没有了anaconda prompt,第一步是恢复菜单界面,方法是
win+R 打开cmd界面

进入anaconda安装目录 例如我的:cd D:\anaconda

然后

python .\Lib_nsis.py mkmenus

成功解决:
解决问题:ImportError: Missing required dependencies [‘numpy‘]

解决方法:

打开anaconda prompt 输入以下命令:

pip uninstall pandas
pip uninstall numpy
pip install pandas

相关文章:

  • 2021-08-09
  • 2021-09-18
  • 2021-07-20
  • 2022-12-23
  • 2021-09-09
  • 2021-10-06
  • 2021-08-05
猜你喜欢
  • 2022-01-26
  • 2021-10-04
  • 2021-07-06
  • 2022-12-23
  • 2021-09-22
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案