Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 1.19 KB

install.md

File metadata and controls

20 lines (13 loc) · 1.19 KB

Software you will need for this module

Setting up Java on Windows:

YouTube

Install the above software. Create an empty folder on your computer. Right click on the folder and select Git Bash here.

To clone the repository for the course type:

git clone http://github.com/skooter500/OOP-2021-2022

Launch Visual Studio Code and choose File | Open Folder not open file and open the repo. There are two files in this folder that tells VSC how to compile and the Java code. The most significant of these is the .classpath file. This is an XML file that lists all the jar files that the project depends on. Open the file in VSC and check it out. jar files are zip files with a .jar extension that contain .class files. You should be able to open Main.java and choose Debug from the debug menu in VSC to compile and run the code.