Simple guide on start your Udacity DRL project (Local Environment)

L Song
3 min readFeb 18, 2021

Install Anaconda, CUDA, etc.
Create new virtual environment with python version 3.6 (mainly due to PyTorch) and activate it:

Now git clone the udacity repo and install dependencies:

git clone https://github.com/udacity/deep-reinforcement-learning.git
cd deep-reinforcement-learning/python

Before install, at the currently moment need to comment out the torch installation by removing line “torch==0.4.0” in the…

--

--