Changes between Version 25 and Version 26 of DevNotes/Obsolete/AnacondaSetup


Ignore:
Timestamp:
Mar 24, 2016 4:16:45 PM (8 years ago)
Author:
krzywon
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevNotes/Obsolete/AnacondaSetup

    v25 v26  
    1515* 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. 
    1616 
    17 == Step 2 - Install Dependancies == 
     17== Step 2 - Install Dependencies == 
    1818 
    1919Add the channel containing extra dependencies needed by SasView: 
     
    3232}}} 
    3333 
    34 Install all the SasView dependencies we need: 
     34Install all required !SasView dependencies: 
    3535 
    3636{{{ 
    37 conda install --yes pylint matplotlib scipy pyparsing html5lib wxpython reportlab lxml PIL setuptools numpy comtypes pywin32 py2exe pisa numpy sphinx unittest-xml-reporting mingw periodictable bumps 
     37conda install --yes pylint matplotlib scipy pyparsing html5lib wxpython reportlab lxml PIL setuptools numpy comtypes pywin32 py2exe pisa numpy sphinx unittest-xml-reporting mingw pip 
    3838}}} 
    3939 
    40 Note 1: mingw can be removed from the command line above if you have a separate MinGW 32-bit installation. 
    41  
    42 Note 2: if periodictable & bumps do not install, see Steps 5 & 7. 
     40The bumps and periodictable Anaconda packages are not up to date. To install the latest versions, use pip as below, or checkout the repositories as outlined in Step 5. 
     41{{{ 
     42pip install bumps periodictable 
     43}}} 
    4344 
    4445== Step 3 - Install Git (or optionally stay with SVN) == 
     
    5960Download: http://sourceforge.net/projects/win32svn/files/latest/download 
    6061 
    61 == Step 4 - Download the SasView Source Code == 
     62== Step 4 - Download the !SasView and !SasModels Source Code == 
     63 
     64The !SasView source code requires the sasmodels source directory to be in the same base directory for proper referencing. The dependencies also require the directories be named sasview and sasmodels. 
    6265 
    6366{{{ 
    6467# With Git: 
    65 git clone https://github.com/SasView/sasview.git sasview-code 
     68git clone https://github.com/SasView/sasview.git sasview 
     69git clone https://github.com/SasView/sasmodels.it sasmodels 
    6670# With SVN: 
    67 svn checkout https://github.com/SasView/sasview sasview-code 
    68 cd sasview-code 
     71svn checkout https://github.com/SasView/sasview sasview 
     72svn checkout https://github.com/SasView/sasmodels sasmodels 
     73cd sasview 
    6974}}} 
    7075 
     
    7277Added by smk78 
    7378 
    74 Only follow this step if the bumps & periodictable packages were not installed by conda in Step 2. 
     79Follow this step to use the source code rather than installed packages for bumps and periodictable. 
    7580 
    7681{{{ 
    7782# With Git: 
    78 git clone https://github.com/bumps/bumps.git bumps-code 
    79 git clone https://github.com/pkienzle/periodictable.git periodictable-code 
     83git clone https://github.com/bumps/bumps.git bumps 
     84git clone https://github.com/pkienzle/periodictable.git periodictable 
    8085# With SVN: 
    81 svn checkout https://github.com/bumps/bumps.git bumps-code 
    82 svn checkout https://github.com/pkienzle/periodictable.git periodictable-code 
     86svn checkout https://github.com/bumps/bumps.git bumps 
     87svn checkout https://github.com/pkienzle/periodictable.git periodictable 
    8388}}} 
    8489 
     
    109114Added by smk78 
    110115 
    111 Only follow this step if the bumps & periodictable packages were not installed by conda in Step 2. 
     116Only follow this step if you chose to close the bumps & periodictable repositories in Step 5 rather than pip install them in Step 2. 
    112117 
    113 Navigate to the bumps-code folder: 
     118Navigate to the bumps folder: 
    114119{{{ 
    115120python setup.py install 
    116121}}} 
    117122 
    118 Navigate to the periodictable-code folder: 
     123Navigate to the periodictable folder: 
    119124{{{ 
    120125python setup.py install