Working through the reference notebook, it takes a long time to create the conda environment with the given command, in addition to the fact that not all packages are available on conda -
conda create -n euclid_env python=3.11 s3fs numpy astropy>=5.3 matplotlib astroquery>=0.4.10 sep>=1.4 fsspec jupyterlab notebook
This gives the following error -
Solving environment: failed
PackagesNotFoundError: The following packages are not available from current channels:
- sep=1.4*
- astroquery=0.4.10*
Suggested fix that really speeds up the process is to change the >= requirements to = and add conda-forge channel -
conda config --add channels conda-forge
conda create -n euclid_env python=3.11 s3fs numpy astropy=5.3 matplotlib astroquery=0.4.10 sep=1.4 fsspec jupyterlab notebook
This command worked for me.
Working through the reference notebook, it takes a long time to create the conda environment with the given command, in addition to the fact that not all packages are available on conda -
This gives the following error -
Suggested fix that really speeds up the process is to change the
>=requirements to=and add conda-forge channel -This command worked for me.