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

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

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

在github上有一个repo,我将它克隆到我的本地机器,进入它里面。

git clone https://github.com/rushter/SOME_REPO
cd SOME_REPO
pip install scipy numpy // why install these in a new cloned repo?
git-clone
1个回答
1
投票

为什么要在新的克隆仓库中安装这些?

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

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