代码之家  ›  专栏  ›  技术社区  ›  ERJAN

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

  •  0
  • ERJAN  · 技术社区  · 6 年前

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

    在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?
    
    0 回复  |  直到 6 年前
        1
  •  1
  •   VonC    6 年前

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

    跟随 this process ,或 official documentation ,您应该不需要在每个存储库中安装它,而是全局安装一次(Linux上的系统范围安装,-Windows上的用户)。

    推荐文章