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