在Casa中安装astropy

时间:2018-09-12 06:53:33

标签: python installation astropy

我正在尝试在Mac上将astropy安装到CASA 4.3.1中。我正在按照here找到的说明进行操作。但是运行pip.main(['install', 'astropy', '--user'])之后,我得到了:

AttributeError: 'module' object has no attribute 'main'

还有其他人遇到过这个问题吗?

编辑:

使用后

import pip._internal
pip._internal.main(['install', 'astropy', '--user'])

安装开始但由于错误而停止:

Command "python setup.py egg_info" failed with error code 1 in /private/var/folders/

1 个答案:

答案 0 :(得分:0)

我找到了答案,我正在分享它,以防将来其他人遇到相同的问题。步骤如下。在遵循了我在问题中提到的过程之后,没有最后一步,就需要在终端中运行以下命令:

python -m pip install --upgrade pip setuptools wheel

然后打开Casa和import pip._internal,最后运行pip._internal.main(['install', 'astropy', '--user'])