Step | Instruction | Explanation |
---|---|---|
1 | Open a Terminal window | |
2 | cd imu-tools | Sets the following terminal commands to operate within the “imu-tools” folder |
3 | git stash | Sets aside any modifications that you've made to files in the folder, such as the replacement 3d-model.js file that I instructed you to install on Tuesday. |
4 | git pull | Fetches the latest changes from GitHub, and installs them in the directory on your computer. |
5 | pipenv run webserver | Runs a local web server, that serves web pages that allow you to inspect the IMU data. If this command produces an error OSError: [Errno 48] Address already in use , it means you have already done this in another Terminal window that is still open. You can ignore the error and proceed. |
6 | In a web browser, open http://127.0.0.1:8000/ | Opens the main page of the web tools. The links in this page open other pages such as the 3D model page that we have been working with previously. |