Changes:
As the dependencies changed again, I recommend to use a fresh environmen:
conda env remove --name cryolo
After that, create a new virtual environment:
conda create -n cryolo -c anaconda python=3.6 pyqt=5 cudnn=7.1.2 cython
Activate the environment:
source activate cryolo
Install fast numpy from conda:
conda install numpy==1.14.5
In case you run crYOLO on a GPU run:
pip install 'cryolo[gpu]==1.4.1rc3'
But if you want to run crYOLO on a CPU run:
pip install 'cryolo[cpu]==1.4.1rc3'
ERROR: imagecodecs-lite 2019.2.22 has requirement numpy>=1.15.4, but you'll have numpy 1.14.5 which is incompatible.
However, you can ignore it. It is actually also working with numpy==1.14.5
Thats it