I'm trying to follow these instructions to create a conda environment with this YAML file on an HPC but the environment keeps getting stuck on solving.
name: p2b1
dependencies:
- python=3.7.5
- scipy=1.5.3
- keras=2.4.3
- h5py=2.10.0
- numpy=1.19.5
- tensorflow-gpu=2.2.0
- pandas=1.2.0
- scikit-learn=0.24.0
- tqdm=4.56.0
- matplotlib=3.3.3
- numba=0.52.0
- astropy=4.2
- patsy=0.5.1
- statsmodels=0.12.1
It works when I only include numpy in the list of packages and add conda forge and defaults into the YAML file. Any way to resolve this?
(I am using conda version 23.3.1, but I have several working environments with this version I can't afford to lose so I'm concerned about updating it unnecessarily)
I tried installing just numpy with the YAML file and it worked.