Changes between Version 27 and Version 28 of DevNotes/DevGuide/CondaDevSetup


Ignore:
Timestamp:
Jul 12, 2018 5:50:52 AM (6 years ago)
Author:
tcbennun
Comment:

add GNU Make and VC++ 2015 detail

Legend:

Unmodified
Added
Removed
Modified
  • DevNotes/DevGuide/CondaDevSetup

    v27 v28  
    1717git clone https://github.com/SasView/sasmodels.git sasmodels 
    1818}}} 
    19 == Step 3 - Install dependencies using yml files == 
     19== Step 3 - Install dependencies == 
    2020Go to folder: 
    2121 
     
    3535conda env create -f sasview-env-build_linux.yml 
    3636}}} 
     37 
     38=== Other dependencies === 
     39Note that in order to build the documentation, you will require a version of GNU Make (the {{{make}}} command). On Linux, you can obtain this with your package manager. On Windows 7, activate your new conda environment and run the following: 
     40{{{ 
     41conda install -c conda-forge make 
     42}}} 
     43On Windows 10, you may find that the {{{make}}} command does not work with the above method. You can find a Windows-compatible build of GNU Make here: http://gnuwin32.sourceforge.net/packages/make.htm 
     44Ensure that you add the install directory to your PATH. 
     45 
     46'''''TODO: Mac instructions?''''' 
     47 
    3748== Step 4 - activate conda enviroment == 
    3849{{{ 
     
    8293}}} 
    8394 
     95On Windows, as of July 2018, you will need to install Build Tools for Visual Studio 2015. This is found under the 2017 label, confusingly: https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2017 
     96Download the installer and run it. Find "Visual Studio Build Tools 2017" and click Install. In the window that appears, navigate to "Individual components" and ensure that "VC++ 2015.3 v14.00 (v140) toolset for desktop" and a relevant Windows SDK (e.g. Windows 10 SDK, if you are using Windows 10) are selected. Finally, click Install. 
     97 
    8498You can now run {{{python run.py}}} as usual to start the application. 
    8599