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 18:15] – fix formatting 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 13: Line 15:
   * https://repo.anaconda.com/archive/Anaconda3-2019.10-Windows-x86_64.exe   * https://repo.anaconda.com/archive/Anaconda3-2019.10-Windows-x86_64.exe
  
-Configure git to use vs code as the editor: +Configure git to use vs code as the editor (in the git bash shell)
-  * ''git config --global core.editor "/c/Users/user/AppData/Local/Programs/Microsoft*VS*Code/bin/code --wait"''+  * <code>git config --global core.editor "/c/Users/$USERNAME/AppData/Local/Programs/Microsoft*VS*Code/bin/code --wait"</code> 
 +or (in cmd shell): 
 +  * <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>