Windows
Installing basic git/python/numpy utilities under windows:
Install an editor:
Install git:
Install anaconda python distribution (this includes numpy, numba, and a bunch of other useful stuff):
Configure git to use vs code as the editor (in the git bash shell):
git config --global core.editor "/c/Users/$USERNAME/AppData/Local/Programs/Microsoft*VS*Code/bin/code --wait"
or (in cmd shell):
git config --global core.editor "%HOMEPATH%/AppData/Local/Programs/Microsoft*VS*Code/bin/code --wait"
Linux
Fedora and friends
sudo dnf install python3 git-all gitk python3-numpy python3-pytest pip3 --user install numba
Debian/Ubuntu
sudo apt install python3 git-all gitk python3-numpy python3-pytest pip3 --user install numba