请求从Github安装软件包到PyCharm的步骤

问题描述 投票:0回答:1

我对Pycharm和Python还是陌生的。我将从使用Joel Grus的《数据科学》一书开始进行数据科学自学。作者有一个Github页面,其中包含运行本书中提供的代码所需的所有软件包。我将Pycharm用作IDE来练习Python编码。

作者的GitHub页面在下面。https://github.com/joelgrus/data-science-from-scratch

我正在尝试在Pycharm终端中使用以下命令在PyCharm中安装文件:

pip install git + https://github.com/joelgrus/data-science-from-scratch.git

当我这样做时,出现如下所示的错误:

Pycharm Terminal error message有人可以帮我解决问题吗?

谢谢,罗希特

github installation pycharm package
1个回答
0
投票

为什么不直接下载requirements.txt

然后运行

pip install -r /path/to/requirements.txt

© www.soinside.com 2019 - 2024. All rights reserved.