Ubuntu Docker에 Anaconda 설치

Ubuntu Docker에 Anaconda 설치

나는 설치했다파이썬도커 우분투 16.04LTS에서

RUN \
    curl -O https://repo.continuum.io/archive/Anaconda3-4.2.0-Linux-x86_64.sh && \
    yes "yes" | bash Anaconda3-4.2.0-Linux-x86_64.sh && \
    sudo -s source ~/.bashrc

하지만 내가 할 때

RUN conda list

오류 가 발생합니다 /bin/sh: 1: conda: not found.

anacondainstall 에 따르면 In order to activate the installation, you should source the ~/.bashrc file:, 이 경우에는 작동하지 않는 것 같습니다.

관련 정보