Changes between Version 2 and Version 3 of DevNotes/Obsolete/AnacondaSetup
- Timestamp:
- Feb 12, 2015 5:35:50 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevNotes/Obsolete/AnacondaSetup
v2 v3 19 19 Add the channel containing extra dependencies needed by SasView: 20 20 21 {{{ 21 22 conda config --add channels https://conda.binstar.org/PeterParker 23 }}} 22 24 23 25 Install all the SasView dependencies need: 24 26 25 conda install --yes pylint matplotlib=1.1.1 scipy pyparsing html5lib wxpython reportlab lxml PIL setuptools numpy comtypes pywin32 py2exe pisa periodictable bumps numpy sphinx unittest-xml-reporting 27 {{{ 28 conda install --yes pylint matplotlib scipy pyparsing html5lib wxpython reportlab lxml PIL setuptools numpy comtypes pywin32 py2exe pisa periodictable bumps numpy sphinx unittest-xml-reporting 29 }}} 26 30 27 31 == Step 3 - Install SVN (Soon to be Git!) == … … 33 37 Download the source code: 34 38 39 {{{ 35 40 svn checkout http://svn.code.sf.net/p/sasview/code/trunk sasview-code 36 41 cd sasview-code 42 }}} 37 43 38 44 Build SasView. To do this we would ideally we would like to run: 39 45 46 {{{ 40 47 python setup.py build -cmingw32 48 }}}