Skip to content

Latest commit

 

History

History
76 lines (54 loc) · 1.45 KB

install_anaconda.md

File metadata and controls

76 lines (54 loc) · 1.45 KB

DeepRacer-For-Dummies - Install Anaconda and CUDA/CUDNN

  1. Download Anaconda:

    sudo apt-get update -y && \
        sudo apt-get upgrade -y && \
        cd /tmp && \
        sudo wget https://repo.anaconda.com/archive/Anaconda3-2019.03-Linux-x86_64.sh
    
  2. Install Anaconda:

    bash Anaconda3-2019.03-Linux-x86_64.sh
    
  3. When promted, agree to the license terms:

    Welcome to Anaconda3 2019.03
    
    In order to continue the installation process, please review the license
    agreement.
    Please, press ENTER to continue
    >>>
    …
    Do you approve the license terms? [yes|no]
    
  4. Complete the Installation:

Anaconda3 will now be installed into this location:
/home/$USER/anaconda3

  - Press ENTER to confirm the location
  - Press CTRL-C to abort the installation
  - Or specify a different location below

[/home/$USER/anaconda3] >>>
  1. Agree to add Anaconda to the PATH:
Do you wish the installer to prepend the Anaconda3 install location
to PATH in your /home/sammy/.bashrc ? [yes|no]
[no] >>> 
  1. Go back to your HOME directory:

    cd ~
    
  2. Activating Anaconda:

    source ~/.bashrc
    
  3. Verifying the conda package manager works:

    conda list
    
  4. Install CUDA/CUDNN:

    conda install cudnn==7.3.1 && conda install -c fragcolor cuda10.0
    

Back to readme