我已经安装了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?
为什么要在新的克隆仓库中安装这些?
在this process或official documentation之后,您不需要在每个存储库中安装它,而是一次全局安装(Linux上的系统范围安装, - Windows上的--user)。 然后,您的PATH应该允许您访问这些python模块。