Changes between Version 5 and Version 6 of DevNotes/DevGuide/CondaDevSetup
- Timestamp:
- Oct 28, 2017 11:13:26 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevNotes/DevGuide/CondaDevSetup
v5 v6 1 1 = Easy Developer Setup Using Anaconda = 2 3 2 == Step 1 - Install Anaconda == 4 5 3 Download the latest '''64-Bit''' Python '''2.7''' Installer from http://continuum.io/downloads and run it. 6 4 7 * The recommended destination folder is as good as any. If you deviate from this then it's probably worthwhile to make sure the path is short and contains no spaces.5 * The recommended destination folder is as good as any. If you deviate from this then it's probably worthwhile to make sure the path is short and contains no spaces. 8 6 9 * At the Advanced Options screen, you need to consider whether or not you want to make Anaconda your default version of Python. Developers who do not work on multiple Python projects can just accept the defaults here.7 * At the Advanced Options screen, you need to consider whether or not you want to make Anaconda your default version of Python. Developers who do not work on multiple Python projects can just accept the defaults here. 10 8 11 9 == Step 2 - Download !SasView and sasmodels from github == 12 If you don't have installed go GIT section for instructions, otherwise simply run 10 If you don't have git installed, go to the GIT section below [[#Step 6 - Install Git (Optional)]] for instructions, otherwise simply run 11 13 12 {{{ 14 13 git clone https://github.com/SasView/sasview.git sasview 15 14 git clone https://github.com/SasView/sasmodels.git sasmodels 16 15 }}} 16 == Step 3 - Install dependencies using yml files == 17 Go to folder: 17 18 18 == Step 3 - Install dependencies using yml files ==19 20 Go to folder:21 19 {{{ 22 20 sasview/build_tools/conda/ymls 23 }}} 24 21 }}} 25 22 and create conda enviroment using yml specific for your platform 26 23 … … 35 32 conda env create -f sasview-env-build_linux.yml 36 33 }}} 37 38 34 == Step 4 - activate conda enviroment == 39 35 {{{ … … 44 40 source activate sasview 45 41 }}} 46 47 42 == Step 4 - run !SasView == 48 43 You should be ready to go now go to sasview directory and run 44 49 45 {{{ 50 46 … … 56 52 57 53 }}} 54 == Step 6 - Install Git (Optional) == 55 Install Git for your platform by following instructions: 58 56 59 60 == Step 6 - Install Git (Optional) ==61 62 Install Git for your platform by following instructions:63 57 {{{ 64 58 https://git-scm.com/book/en/v2/Getting-Started-Installing-Git 65 59 }}} 66 67 60 When installing on Windows, it may be worthwhile to make sure "Use Git from the Windows Command Prompt" is selected, rather than "Use Git from Bash only". This way you can use git from the same command line as you will use Anaconda. 68 61