javac followed by the name of your program file to create the bytecode version of the program.java followed by the name of your program to execute the bytecode file.brew doctor to confirm the installation completed successfully.Use the following commands at the prompt as shown below to install the software packages:
$ brew install git$ brew install openjdk$ brew cask install github$ brew cask install atomThe software is now ready to use. Every week or two run the command brew upgrade to keep the software up to date.
( Always precede installations with: sudo apt update )
Install Java
$ sudo apt update$ sudo apt install openjdk-11-jre-headlessInstall Atom
$ wget -qO - https://packagecloud.io/AtomEditor/atom/gpgkey | sudo apt-key add -$ echo 'deb [arch=amd64] https://packagecloud.io/AtomEditor/atom/any any main' | sudo tee /etc/apt/sources.list.d/atom.list$ sudo apt update$ sudo apt install atomInstall Chrome
$ wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -$ echo 'deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main' | sudo tee /etc/apt/sources.list.d/google-chrome.list$ sudo apt update$ sudo apt install google-chrome-stableNote: GitHub Desktop is not currently usable on Linux so the command line git commands must be used.
Open a terminal window and type the following commands:
You will need to enter your GitHub username & password if prompted to do so.
Note: Creating the repository may need to be performed at the start of each class due to the way school computers are managed, but only once on a personal device where user data is saved. Be sure you commit any changes and run git push origin master at the end of each work session or class as well as git pull origin master at the beginning.