python – Conda Create Environment Takes Forever

Is it only me or is it like this with Conda? I’m having a environment file that looks like this:

name: python-cvcourse
channels:
  - menpo
  - conda-forge
  - defaults
dependencies:
  - jupyter=1.0.0
  - jupyterlab=0.34.9
  - keras=2.2.2=0
  - matplotlib=2.2.3
  - numpy=1.15.1
  - opencv=4.1.0
  - pandas=0.23.4
  - python=3.6.6
  - scikit-learn=0.19.1
  - scipy=1.1.0
  - tensorboard=1.10.0
  - tensorflow=1.10.0
  - pillow=8.3.2
prefix: /anaconda3/envs/cvcourse

I’m using the following command to update the environment:

conda env update -f requirements.yaml

It has been at this prompt below for more than few minutes and I’m starting to think if there is something that could be done about it:

(python-cvcourse) joesan@joesan-InfinityBook-S-14-v5:~/Projects/Private/sandbox-projects/udemvy-opencv-python$ conda env update -f cvcourse_linux.yml
Collecting package metadata (repodata.json): done
Solving environment: - 
Found conflicts! Looking for incompatible packages.
This can take several minutes.  Press CTRL-C to abort.
\ 

Read more here: Source link