Files
micromelon-website/content/resources/install-guide-vs-code.mdx
Tim Hadwen 1f8c46597b Site audit: fix broken images, add activity metadata, clean up content
- Remove broken image references from 25 MDX files (deleted spacer/content images)
- Add codingSkills and roverConcepts frontmatter to 24 activity pages
- Fix "Activity Demonstration" headings in 15 activity files (plain text -> h3)
- Remove unused "All" category from 89 MDX files
- Decode HTML entities (> <  ) in 9 content files
- Escape bare < > characters in MDX to fix build errors
- Standardize contact email to contact@micromelon.com.au
- Add missing description to rover-repair-request metadata
- Include previous session work: about-us updates, difficulty filtering,
  LearningPathway component, expanded schools list, new product/resource images

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-02 21:49:15 +10:00

65 lines
4.4 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "How To Install Visual Studio Code"
date: "2022-08-03"
categories: ["Advanced Guides"]
tags: ["Python", "Install Guide", "VS Code"]
excerpt: "Learn how to install Visual Studio Code."
featuredImage: "/images/resources/install-guide-vs-code.png"
---
VS Code (Visual Studio Code) is one of the most popular code editors on the planet. Thanks to many incredibly useful software add-ons it calls “extensions”, it can be used with almost any software language. Developed by Microsoft and available on Windows, Linux and macOS it is one of the most versatile source-code editors with nearly infinite customisability.
Due to VS Code being a general-purpose code editor, you will need to follow a few extra steps before you can start coding the Micromelon Rovers using Python.
### **Installing Python**
You first need to install a version of the Python programming language equal to or above version 3.8. For the purposes of this guide, we will be using the newest release of python 3.10, version 3.10.5. You can find all available versions of Python by visiting the following link: [https://www.python.org/downloads/](https://www.python.org/downloads/)
Look for the part of the webpage that looks like the below image, then click the download link next to the version you wish to use.
![](/images/content/2836d0-image7.png)
Scroll to the bottom of the next page until you find the “Files” section, as seen in the image below. Then click on the version corresponding to your computer. For this guide, we will be using a 64-bit Windows 10 machine, so we will click the last link.
![](/images/content/efc97e-image9.png)
Double-click on the installer once the file has finished downloading, and you should be greeted with the python Setup window. Ensure that the “Add Python 3.XX to PATH” check box is ticked down the bottom and click “Install Now”.
![](/images/content/ec3552-image8.png)
Once python has finished installing, you will be shown the following screen. Click on “Disable Path Length Limit” to ensure that Python will be accessible from the command prompt.
![](/images/content/a4dba3-image11.png)
### **Installing VS code**
To download this IDE, go to the following link: [https://code.visualstudio.com/download](https://code.visualstudio.com/download) and download the version corresponding to your computer.
![](/images/content/082ffb-image10.png)
Double-click on the installer once the file has finished downloading, and you should be greeted with the setup window. Keep clicking “Next” until the window shown in the next image appears, ensure that the following checkboxes are ticked, and complete the installation.
![](/images/content/62fc6c-image2.png)
Once setup has been completed, open VS Code and click on the extensions logo on the left-hand side of the editor window. This is highlighted in red in the following image. Type “python” into the search bar, click the result highlighted in red in the following image and install it.
![](/images/content/151902-image1.png)
Now navigate back to the project tab by clicking on the logo highlighted in red on the left-hand side of the editor window in the following image. You will need to make a folder on your computer where we will save our first project. Once you have made a folder, click on the “Open Folder” button highlighted in red in the below image to open it in VS code. It is best that you make a folder for your project somewhere you can find it later.
![](/images/content/6c81ec-image4.png)
We can now make a new Python file by clicking on the “New File” button and then clicking on “Python File” seen highlighted in red in the following image:
![](/images/content/16ae89-image3.png)
We now need to install the Micromelon Python module, allowing you to connect to and program the Rover. To do this, click on the “Terminal” button highlighted in red, then click “New Terminal” in the drop-down. This will open a new panel at the bottom of the window where you can interact with the Windows Terminal, highlighted in red in the following image.
![](/images/content/ac4e5b-image6.png)
Click on the Terminal panel and type “pip install micromelon” to download and install the Micromelon Python package, as seen in the following image, and press enter.
![](/images/content/09c38e-image5.png)
You have completed all the steps required to set up VS code to use Python and the Micromelon Python Module. Follow our guide here to make your first Rover program.