Skip to content

RIT-MESH/Autonomous-driving

Repository files navigation

Autonomous-driving

We'll be making use of the simulation to train a car how to drive and navigate on its own. This simulator is provided to us courtesy of the Udacity organization who have set up an open source vehicular simulation built with unity. There are other simulators that can be use for autonomous driving car's simulation like air sim, another self-driving car Open-Source simulator that's based on Unreal Engine.

Sublime's custom image

Steps

  1. See list of Environment: conda env list
  2. Conda Environment: conda create -n drive python=3.7.4
  3. Activate Environment: conda activate drive
  4. Install Dependencies: pip install -r requirement.txt
  5. Run main file: python drive.py
  6. Simulation: Start the simulator
  7. Deactivate Environment: conda deactivate (after completion)

->Delete Environment: conda env remove -n nameofevnironment

Note: if simulator is not connected then use following commands

  1. pip install python-engineio==3.13.2

  2. pip install python-socketio==4.6.1

Solution for simulation not connected: link1 or link2