python - Installing OpenMDAO -
i trying install openmdao, open source framework uses python. before it, needs 3 packages:
- fortran compiler
- numpy
- scypy
which did install using homebrew:
brew install gfortran sudo easy_install-2.6 pip sudo pip-2.6 install numpy sudo pip-2.6 install scipy now, install openmdao, i'm supposed in openmdao folder , @ level should run script:
python go-openmdao-dev.py but keep getting error:
error: following prerequisites not imported: ['scipy']. so talking people @ openmdao, , seems need use python2.6 - although i'm not certain, guess packages installed python 2.7 downloaded since recommended in python website.
the 1 comes mac not. when type in terminal following:
python2.6 it runs version. @ point don't know if have go run script in python 2.6, if so, have no idea how it. tried doing , did not work:

if familiar environment or python , has suggestions, i'll appreciate it.
i had same problem after downloading scipy .dmg. uninstalled, , reinstalled source: http://sourceforge.net/projects/scipy/files/scipy/0.12.0/ , openmdao installer recognized scipy.
this may useful (from install.txt in scipy-0.12.0.tar.gz):
to test scipy after installation (highly recommended), execute in python
>>> import scipy
>>> scipy.test()to run full test suite use
>>> scipy.test('full')
please note must have version 0.10 or later of 'nose' test framework installed in order run tests. more information nose available on website__.
Comments
Post a Comment