diff --git a/README.md b/README.md
index 7e0da32676982302cdb2ba4f97739a592dbe4c2f..c1323847f082128e5cd9a162a1942fce88e3000f 100644
--- a/README.md
+++ b/README.md
@@ -11,24 +11,26 @@ http://www.autonomousdrivingchallenge.com
 
 ## Installing
 
-Install modelcar basic packages, because we need its odometry package
+Download modelcar basic packages workspace, because we need its odometry package
 
 ```
-wget http://ftp.imp.fu-berlin.de/pub/autonomos/data/modelcar/software-packages/v3.1/kinetic/amd64/modelcar-basic-packages.deb
-sudo dpkg -i modelcar-basic-packages.deb
-source /opt/ros/modelcar/catkin_ws/install/setup.bash
-
+cd <somewhere>
+git clone -b version-3.1-kinetic https://github.com/AutoModelCar/model_car.git
+cd model_car/catkin_ws
+source /opt/ros/kinetic/setup.bash
+catkin_make
+source devel/setup.bash
 ```
 
-
-Create our catkin_ws workspace, overlaying /opt/ros/modelcar/install/catkin_ws
+Create our catkin_ws workspace, overlaying <somewhere>/model_car/catkin_ws
 
 ```
-source /opt/ros/modelcar/catkin_ws/install/setup.bash
-mkdir -p ~/catkin_ws/src
-cd ~/catkin_ws
+source <somewhere>/model_car/catkin_ws/devel/setup.bash
+cd <somewhere>
+mkdir -p catkin_ws/src
+cd catkin_ws
 catkin_make
-source ~/catkin_ws/devel/setup.bash
+source <somewhere>/catkin_ws/devel/setup.bash
 # You should add this last line to your ~/.bashrc file
 ```