Differences

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

Link to this comparison view

Next revision
Previous revision
Next revisionBoth sides next revision
installation-user [2020/01/15 18:14] – created Zbigniew Jedrzejewski-Szmekinstallation-user [2020/01/15 22:24] – add variables Zbigniew Jedrzejewski-Szmek
Line 2: Line 2:
  
 Install an editor: Install an editor:
-https://code.visualstudio.com/ +  * https://code.visualstudio.com/ 
-https://code.visualstudio.com/docs/?dv=win64user+  https://code.visualstudio.com/docs/?dv=win64user
  
 Install git: Install git:
-https://gitforwindows.org/ +  * https://gitforwindows.org/ 
-https://github.com/git-for-windows/git/releases/download/v2.25.0.windows.1/Git-2.25.0-64-bit.exe+  https://github.com/git-for-windows/git/releases/download/v2.25.0.windows.1/Git-2.25.0-64-bit.exe
  
 Install anaconda python distribution (this includes numpy, numba, and a bunch of other useful stuff): Install anaconda python distribution (this includes numpy, numba, and a bunch of other useful stuff):
-https://docs.conda.io/projects/conda/en/latest/user-guide/install/windows.html +  * https://docs.conda.io/projects/conda/en/latest/user-guide/install/windows.html 
-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>