If you are curious about reinforcement learning, you might find some information that is useful for you.
Run in terminal:
mkdir ~/no_backup
cd ~/no_backup
git clone https://github.com/kaya2016/RL_AV.git
First, we create a virtual environment where we want to put all the required packages.
-
Create a Python 3 virtual environment
virtualenv ~/no_backup/venv_ml -p python3.5
-
Activate the virtual environment by running the command
source ~/no_backup/venv_ml/bin/activate
-
Install the required packages
pip3 install -r requirements.txt
-
Show a list of all installed packages
pip3 list --local
-
install the activated environment as an ipython kernel
ipython kernel install --user --name=venv_ml
-
Deactivate the environment, When you finish your work
deactivate