如何修复"Missing required dependencies ['numpy']"错误?



>您好,我怎样才能克服此错误,我尝试卸载并重新安装熊猫和Quandl,但仍然出现相同的错误?

RESTART: C:/Users/Reece92/AppData/Local/Programs/Python/Python36/Machine learning sentdex IDLE.py  
Traceback (most recent call last):   
File "C:/Users/Reece92/AppData/Local/Programs/Python/Python36/Machine learning sentdex IDLE.py", line 1, in <module>     
import pandas as pd
File "C:UsersReece92AppDataLocalProgramsPythonPython36libsite-packagespandas__init__.py", line 19, in <module>
"Missing required dependencies {0}".format(missing_dependencies)) 
ImportError: Missing required dependencies ['numpy']

在python世界中,你有一个名为packages的东西。你可以使用它来扩展python与库和东西。默认情况下,这些"额外"软件包都没有安装,您必须使用名为 pip 的命令来安装应用程序所需的所有要求。

在您的情况下:

pip install numpy

最新更新