To fix CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. To initialize your shell, run, I 've done following changes in Dockerfile;
From
RUN conda activate eos2re5-py27
RUN pip install scikit-learn==0.17.1
RUN pip install scipy==1.2.3
RUN conda deactivate
To
RUN conda activate eos2re5-py27 && pip install scikit-learn==0.17.1 && pip install scipy==1.2.3 && conda deactivate
To fix
CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. To initialize your shell, run
, I 've done following changes in Dockerfile;From
To
RUN conda activate eos2re5-py27 && pip install scikit-learn==0.17.1 && pip install scipy==1.2.3 && conda deactivate