1

I already have scipy, numpy installed. Why do I need to install them in my cloned git repo?

There is a repo on github, i clone it to my local machine, go inside it .

git clone https://github.com/rushter/SOME_REPO
cd SOME_REPO
pip install scipy numpy // why install these in a new cloned repo?
ERJAN
  • 23,696
  • 23
  • 72
  • 146

1 Answers1

1

why install these in a new cloned repo?

Following this process, or the official documentation, you should not need to install it inside each repositories, but once globally (system-wide installation on Linux, --user on Windows).
Then, your PATH should allow you to access those python modules.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250