Changes between Version 5 and Version 6 of DevNotes/DevGuide/CondaDevSetup


Ignore:
Timestamp:
Oct 28, 2017 9:13:26 AM (6 years ago)
Author:
butler
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevNotes/DevGuide/CondaDevSetup

    v5 v6  
    11= Easy Developer Setup Using Anaconda = 
    2  
    32== Step 1 - Install Anaconda == 
    4  
    53Download the latest '''64-Bit''' Python '''2.7''' Installer from http://continuum.io/downloads and run it. 
    64 
    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. 
    86 
    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. 
    108 
    119== Step 2 - Download !SasView and sasmodels from github == 
    12 If you don't have installed go GIT section for instructions, otherwise simply run 
     10If you don't have git installed, go to the GIT section below [[#Step 6 - Install Git (Optional)]] for instructions, otherwise simply run 
     11 
    1312{{{ 
    1413git clone https://github.com/SasView/sasview.git sasview 
    1514git clone https://github.com/SasView/sasmodels.git sasmodels 
    1615}}} 
     16== Step 3 - Install dependencies using yml files == 
     17Go to folder: 
    1718 
    18 == Step 3 - Install dependencies using yml files == 
    19  
    20 Go to folder: 
    2119{{{ 
    2220sasview/build_tools/conda/ymls 
    23 }}}  
    24  
     21}}} 
    2522and create conda enviroment using yml specific for your platform 
    2623 
     
    3532conda env create -f sasview-env-build_linux.yml 
    3633}}} 
    37  
    3834== Step 4 - activate conda enviroment == 
    3935{{{ 
     
    4440source activate sasview 
    4541}}} 
    46  
    4742== Step 4 - run !SasView == 
    4843You should be ready to go now go to sasview directory and run 
     44 
    4945{{{ 
    5046 
     
    5652 
    5753}}} 
     54== Step 6 - Install Git (Optional) == 
     55Install Git for your platform by following instructions: 
    5856 
    59  
    60 == Step 6 - Install Git (Optional) == 
    61  
    62 Install Git for your platform by following instructions: 
    6357{{{ 
    6458https://git-scm.com/book/en/v2/Getting-Started-Installing-Git 
    6559}}} 
    66  
    6760When 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. 
    6861