Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
installation-user [2020/01/15 22:24] – add variables Zbigniew Jedrzejewski-Szmekinstallation-user [2020/01/16 08:41] (current) – add pytest for linux Zbigniew Jedrzejewski-Szmek
Line 1: Line 1:
 +====== Windows ======
 +
 Installing basic git/python/numpy utilities under windows: Installing basic git/python/numpy utilities under windows:
  
Line 17: Line 19:
 or (in cmd shell): or (in cmd shell):
   * <code>git config --global core.editor "%HOMEPATH%/AppData/Local/Programs/Microsoft*VS*Code/bin/code --wait"</code>   * <code>git config --global core.editor "%HOMEPATH%/AppData/Local/Programs/Microsoft*VS*Code/bin/code --wait"</code>
 +
 +====== Linux ======
 +
 +==== Fedora and friends ====
 +<code>
 +sudo dnf install python3 git-all gitk python3-numpy python3-pytest
 +pip3 --user install numba
 +</code>
 +
 +==== Debian/Ubuntu ====
 +<code>
 +sudo apt install python3 git-all gitk python3-numpy python3-pytest
 +pip3 --user install numba
 +</code>