Skip to content
Snippets Groups Projects
environment.yml 1.9 KiB
Newer Older
# Create environment with "conda env create", update with "conda env update"!
# This file contains the top level dependencies of the pyramid project!
# requirements.txt also contains sub-dependencies, generated by "pip freeze > requirements.txt"!
# Add new dependencies here, then "conda env update", then "pip freeze > requirements.txt"!
Jan Caron's avatar
Jan Caron committed
# To see if compatible upgrades are available for the current packages, use "conda upgrade --all"!
# When packages are deprecated/deleted, it may be best to recreate the environment from scratch!
  - defaults  # Default conda channels, on top to keep highest priority!
  - conda-forge  # Used for hyperspy, pyFFTW!
dependencies:
  - python=3.7
  - numpy=1.16
  - scipy=1.3
  - tqdm=4.36
  - scikit-image=0.15
  - hyperspy=1.5
  - hyperspy-gui-ipywidgets=1.2
  - h5py=2.9  # TODO: depends on hyperspy? Not needed here?
  - matplotlib=3.1
  - pillow=6.1
  - cmocean=2.0
  - qt=5.9  # TODO: only needed for mayavi?
  - mayavi=4.6  # TODO: Get rid of!
  - pytest-runner=5.1
  - pytest-mpl=0.10  # Needed for testing hyperspy! # TODO: Use for pyramid/plotting library, too!
  # IPython and notebooks:
  - ptvsd=4.3  # Cell debugging in VS Code
  # TODO: Add back GUI dependencies!
  # TODO: Get Jutil from gitlab (currently doesn't work, git and cygwin don't play nice,...
  # TODO: ...because one is Unix, ond is Windows).
  - pyFFTW=0.11
  - pathos  # pathos.multiprocessing uses dill instead of pickle (needed for class functions)
#    # ALSO NEEDS JUTIL!
#    - "git+ssh://gitlab@iffgit.fz-juelich.de/unger/jutil.git"
  # Misc.:
  - nodejs=12.8  # TODO: Needs to be fixed to prevent errors! Check again if needed in future!