ROS Deep Learning with TensorFlow 101 - Python3 venv

Hi, I’m trying to get the packages from “ROS Deep Learning with TensorFlow 101” course to work on a local machine. The course already has files to set up the python3 venv. How do I set up a similar python3 venv on a local machine to work with the files from the course?

Hi, you can try two solutions:

  1. Download the env folder directly.
    2: use the command pip freeze > requirements.txt on the course shell and env activated and then create a virtual environment and install the packages using pip install -r requirements.txt. you can erase the packages you think you migth not need from the requirements.txt file.
1 Like