我输入此命令来安装 plasmapy 模块,但我只得到:
error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
我搜索并尝试以不同的方式安装 python-dev,但是当我尝试安装 plasmapy 模块时,我得到了同样的错误
我阅读了在这里能找到的所有相关帖子,但还没有找到对我有帮助的解决方案。
答案1
PlasmaPy 需要 Python 3.6+ 包,请查看此处docs_plasmapy
安装 Python 3.6+ 后,
使用以下命令运行包:
pip install
或者
python setup.py install
更新已回答
要获取需求包使用:
pip3 install plasmapy
使用以下方法运行包:
pip3 install .
或者
python3 setup.py install
我希望这有帮助