pip3 无法确定存档格式 - atlasplots 安装

Mat*_* D. 6 python pip

我正在尝试安装 Atlas Plots,但出现一些错误。我尝试使用以下命令行安装它:

pip3 install https://github.com/joeycarter/atlas-plots
Run Code Online (Sandbox Code Playgroud)

但是当我运行它时,终端显示以下错误:

无法确定 /tmp/pip-req-build-o2c8xrmg 的存档格式

而这个命令行是软件站点安装教程中唯一可用的选项,即:

https://atlas-plots.readthedocs.io/en/latest/getting_started.html#installing-atlasplots

我的研究中需要这个地图集,所以我将不胜感激。

phd*_*phd 14

从 Github 存储库安装的正确语法是:

pip install "git+https://github.com/joeycarter/atlas-plots.git#egg=atlasplots"
Run Code Online (Sandbox Code Playgroud)

或者

pip install "git+ssh://git@github.com/joeycarter/atlas-plots.git#egg=atlasplots"
Run Code Online (Sandbox Code Playgroud)

请参阅https://pip.pypa.io/en/stable/cli/pip_install/#vcs-support上的文档

在https://github.com/joeycarter/atlas-plots/issues报告问题,或者更好地发送修复https://github.com/joeycarter/atlas-plots/blob/master/docs/getting_started.rst 的拉取请求