Changes between Version 16 and Version 17 of DevNotes/Obsolete/AnacondaSetup
- Timestamp:
- Feb 13, 2015 4:02:37 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevNotes/Obsolete/AnacondaSetup
v16 v17 38 38 }}} 39 39 40 == Step 3 - Install SVN (Soon to be Git!) ==40 == Step 3 - Install Git (Or optionally stay with SVN) == 41 41 42 Download and install the latest version of SVN from http://sourceforge.net/projects/win32svn/files/latest/download. 42 * Git * 43 Download: http://git-scm.com/download/win 44 45 Set up your credentials: 46 47 {{{ 48 git config --global user.name "John Doe" 49 git config --global user.email johndoe@example.com 50 }}} 51 52 * SVN * 53 Download: http://sourceforge.net/projects/win32svn/files/latest/download 43 54 44 55 == Step 4 - Download the SasView Source Code == 45 56 46 57 {{{ 58 # With Git: 59 git clone git@github.com:SasView/sasview.git sasview-code 60 # With SVN: 47 61 svn checkout https://github.com/SasView/sasview sasview-code 48 62 cd sasview-code