每当我尝试导入pandas
时,python都会死亡,并且不会显示任何错误。这适用于交互式python以及文件。
我尝试重新安装pandas和numpy。我尝试重新安装Python,同时清除了位于appdata中的所有文件。
我要运行的内容:
import pandas
print("Here we are!")
失败,无任何错误。打印语句永远不会运行。
预期结果将是脚本或任何可能运行并使用熊猫的脚本。
Python版本:3.7.3( Windows 10 )
我如何执行脚本:
python ./script.py
我还尝试了交互模式:
PS C:\scripts> python
Python 3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 22:22:05) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pandas
PS C:\scripts>
两端相同,没有任何反馈。