Oh I see... since this is a non-moose-environment install... looks like we need to update our cluster single/multi user installation instructions, to reflect the new requirements to python. Not sure you will need
all of the following python modules, but here is a list the MOOSE group
expects to have available (because they use the moose-environment package)
<install miniconda, or leverage your operating system's package management system, to install the following>
python modules: coverage reportlab mako numpy scipy scikit-learn h5py hdf5 scikit-image requests vtk=7.1.0 pyyaml matplotlib pip lxml pyflakes pandas conda-build mock yaml pyqt swig
And also, the PIP specific stuff (
pip install):
markdown python-markdown-math pybtex bs4 jinja2 livereload daemonlite pylint==1.6.5 lxml pylatexenc anytree
The _exact_ thing we are doing to supply the above in the moose-environment package:
...install miniconda, and with miniconda installed:
conda install -c idaholab python=2.7 coverage reportlab mako numpy scipy scikit-learn h5py hdf5 scikit-image requests vtk=7.1.0 pyyaml matplotlib pip lxml pyflakes pandas conda-build mock yaml pyqt swig --yes
...install pip, and with pip install:
pip install --no-cache-dir markdown python-markdown-math pybtex bs4 jinja2 livereload daemonlite pylint==1.6.5 lxml pylatexenc anytree
Looks like you may only need to perform `pip install anytree`. But, there is no telling what other python modules you might need, so what I'd do, is make sure all those modules are installed.
Jason