帮助安装失败
Healpy installation failure
我正在尝试在我创建的 venv 中安装 healpy。我成功安装了 numpy 和 astropy,但是当我 运行 以下内容时:
pip install healpy
或
pip install -U healpy
安装失败并显示一条以一些
开头的很长的消息
UserWarning: Unknown Extension options: 'cython_directives'
并以红色文本结尾:
failed with error code 1 in /private/var/folders/bp/bvhb5c9n54n0pyyf6694m_z80000gn/T/pip-install-fvug_ld0/healpy/
有人可以帮我在我的 venv 中正确安装 healpy 吗?
我想我会 post 我的解决方案在这里,因为缺少更好的解决方案。
pip install healpy==1.10.2
和
pip install healpy==1.10.3
工作并在我的 venv 中成功安装了相应版本的 healpy。
由于某些原因,较新的版本导致问题中提到的错误。
我正在尝试在我创建的 venv 中安装 healpy。我成功安装了 numpy 和 astropy,但是当我 运行 以下内容时:
pip install healpy
或
pip install -U healpy
安装失败并显示一条以一些
开头的很长的消息UserWarning: Unknown Extension options: 'cython_directives'
并以红色文本结尾:
failed with error code 1 in /private/var/folders/bp/bvhb5c9n54n0pyyf6694m_z80000gn/T/pip-install-fvug_ld0/healpy/
有人可以帮我在我的 venv 中正确安装 healpy 吗?
我想我会 post 我的解决方案在这里,因为缺少更好的解决方案。
pip install healpy==1.10.2
和
pip install healpy==1.10.3
工作并在我的 venv 中成功安装了相应版本的 healpy。
由于某些原因,较新的版本导致问题中提到的错误。