因此,我尝试使用Astropy,并且我肯定下载了它。但是,我得到一个错误。我正在尝试使用Python 2而不是Python 3。

代码只是:

import astropy
astropy.test()


这是给出的错误:

Traceback (most recent call last):
  File "/Users/....../Random.py", line 1, in <module>
  import astropy
  ImportError: No module named astropy

最佳答案

在shell上尝试一些操作,以检查您的环境并可能了解您的问题:

which python
which conda
conda list

关于python - ImportError:在Anaconda中安装astropy后,没有名为astropy的模块,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30873305/

10-13 09:25