Changes between Version 4 and Version 5 of DevNotes/Obsolete/AnacondaSetup


Ignore:
Timestamp:
Feb 12, 2015 3:55:11 AM (10 years ago)
Author:
Peter Parker
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevNotes/Obsolete/AnacondaSetup

    v4 v5  
    3333Download and install the latest version of SVN from http://sourceforge.net/projects/win32svn/files/latest/download. 
    3434 
    35 == Step 4 - Download and Build SasView == 
    36  
    37 Download the source code: 
     35== Step 4 - Download the SasView Source Code == 
    3836 
    3937{{{ 
     
    4240}}} 
    4341 
    44 Build SasView.  To do this we would ideally we would like to run: 
     42== Step 5 - Check that the Right Version of Python is Being Used == 
     43 
     44Ask your console which versions of Python it can find: 
     45 
     46{{{ 
     47where python 
     48}}} 
     49 
     50Hopefully, the first python installation in the list is the recently-installed Anaconda version.  If not, you have two options: 
     51 
     521. Whenever you call python on the command line from now on, use the fully resolved path, e.g.: 
     53   {{{ 
     54   C:/PathToAnaconda/python 
     55   }}} 
     56 
     572. Reorder your PATH/Path environment variables so that the Anaconda installation of Python appears BEFORE all the others.  Environment variables can be modified by pressing the windows key, typing "edit the system environment variables" and hitting Enter.  The build-in Windows way of doing this is not very nice.  An easier way to edit environment variables is by installing [http://www.rapidee.com/en/download RapidEE]. 
     58 
     59== Step 6 - Build SasView == 
    4560 
    4661{{{ 
     
    4863}}} 
    4964 
    50 == Step 5 - Run SasView from the Code ==  
     65== Step 7 - Run SasView from the Code ==  
    5166 
    5267You should then be able to run SasView “in-place” from the code, using: 
    5368 
     69{{{ 
    5470python run.py 
     71}}}