在卡萨astropy安装(Installation of astropy in casa)

2019-10-29 05:28发布

我想在我的Mac astropy安装到CASA 4.3.1。 我发现下面的说明这里 。 但运行后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/

Answer 1:

我找到了答案,我分享它的情况下,任何人在未来有同样的问题。 步骤如下。 具有跟随我在问题中提到的过程,而不最后步骤后,需要在终端运行下面​​的命令:

python -m pip install --upgrade pip setuptools wheel

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



文章来源: Installation of astropy in casa