我需要在工作的每个git克隆项目文件夹中安装scipy,numpy吗?

时间:2019-04-23 16:34:24

标签: git-clone

我已经安装了scipy,numpy。为什么我需要在克隆的git repo中安装它们?

在github上有一个仓库,我将其克隆到本地计算机上,放入其中。

git clone https://github.com/rushter/SOME_REPO
cd SOME_REPO
pip install scipy numpy // why install these in a new cloned repo?

1 个答案:

答案 0 :(得分:1)

  

为什么将它们安装在新的克隆存储库中?

this processofficial documentation之后,您不必将其安装在每个存储库中,而应在全局安装一次(在Linux上是系统范围的安装,在Windows上是--user)。
然后,您的PATH应该允许您访问这些python模块。