parampool icon indicating copy to clipboard operation
parampool copied to clipboard

Other packages that need installed

Open gregnordin opened this issue 7 years ago • 0 comments

Following the instructions in the documentation in the Appendix, I installed the following (I'm on Mac OS 10.12.4):

$ conda create -n parampool python=2.7 numpy Flask progressbar Flask-WTF Flask-SQLAlchemy Flask-Login Flask-Mail
$ source activate parampool

In trying example flask_pool3 I found I had to install the following additional packages:

Python

  • matplotlib
    • $ conda install matplotlib
  • nose
    • $ conda install nose
  • pillow
    • $ conda install pillow

Other packages

  • imagemagick
    • $ brew install imagemagick

odespy

  • Comment: to install odespy from github, a fortran compiler must be present.
    • $ brew install gcc # includes gfortran
    • pip install -e git+https://github.com/hplgit/odespy.git#egg=odespy

It might be good to update Appendix.

Once I did the above, the example worked perfectly.

gregnordin avatar Feb 25 '18 03:02 gregnordin