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
  • 22,540
  • 20
  • 65
  • 127

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,129,465
  • 480
  • 4,036
  • 4,755