我正在尝试在PyCharm中使用numpy,在Spyder中它确实可以工作,但是使用PyCharm会遇到麻烦。
other_objects
PyCharm建议使用numpy,但是当我尝试运行代码时,出现以下错误:
import numpy
a = [ 1, 2, 3, 4]
numpy.savetxt("geht das jetzt.txt", a)
我已经尝试过:Libraries work fine in Spyder but not in PyCharm,但没有成功。
答案 0 :(得分:0)
尽管我真的不太了解问题所在,但找到了解决方案。再次安装Numpy(使用pip而不是pycharm或conda)确实有效。