我是否需要在我工作的每个 git 克隆项目文件夹中安装 scipy、numpy?
Do I need to install scipy, numpy in every git cloned project folder I work in?
我已经安装了 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?
why install these in a new cloned repo?
在 this process, or the official documentation 之后,您不需要将其安装在每个存储库中,而是全局安装一次(Linux 上的系统范围安装,Windows 上的 --user)。
然后,您的 PATH 应该允许您访问那些 python 模块。
我已经安装了 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?
why install these in a new cloned repo?
在 this process, or the official documentation 之后,您不需要将其安装在每个存储库中,而是全局安装一次(Linux 上的系统范围安装,Windows 上的 --user)。
然后,您的 PATH 应该允许您访问那些 python 模块。