Changes between Version 8 and Version 9 of DevNotes/DevGuide/CondaDevSetup
- Timestamp:
- Nov 7, 2017 3:49:29 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevNotes/DevGuide/CondaDevSetup
v8 v9 7 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. 8 8 9 == Step 2 - Download !SasView and sasmodels from github == 10 If you don't have git installed, go to the GIT section below ([#anchor1 Step 6]) for instructions, otherwise simply run 11 12 {{{ 13 git clone https://github.com/SasView/sasview.git sasview 14 git clone https://github.com/SasView/sasmodels.git sasmodels 15 }}} 16 == Step 3 - Install dependencies using yml files == 9 == Step 2 - Install dependencies using yml files == 17 10 Go to folder: 18 11 … … 32 25 conda env create -f sasview-env-build_linux.yml 33 26 }}} 34 == Step 4- activate conda enviroment ==27 == Step 3 - activate conda enviroment == 35 28 {{{ 36 29 #Windows … … 40 33 source activate sasview 41 34 }}} 42 == Step 4 - run !SasView == 35 36 == Step 4 - Download !SasView and sasmodels from github == 37 If you don't have git installed, go to the GIT section below ([#anchor1 Step 6]) for instructions, otherwise simply run 38 39 {{{ 40 git clone https://github.com/SasView/sasview.git sasview 41 git clone https://github.com/SasView/sasmodels.git sasmodels 42 }}} 43 44 On Windows additionally clone 45 46 {{{ 47 https://github.com/SasView/tinycc.git tinycc 48 }}} 49 50 == Step 4a (Windows only) - Install tinycc == 51 {{{ 52 cd tinycc 53 python setup.py build install 54 }}} 55 56 57 == Step 5 - run !SasView == 43 58 You should be ready to go now go to sasview directory and run 44 59