Software Setup

Windows Computer Setup

Java Student Computer Program Setup (Windows)

				
					#Open Powershell and Run as Admin
#Copy and paste the line(s) below

Set-ExecutionPolicy AllSigned

#Hit Enter
#After the commands run, copy and paste the line(s) below


Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

#Hit Enter

#After the commands run, close PowerShell and then Reopen it as administrator then copy
#and paste the lines of text below and hit Enter

choco install googlechrome -y
choco install openjdk17 -y
choco install gradle -y
choco install vscode -y
choco install git -y
choco install slack -y
choco install nodejs -y
#After the commands run, close PowerShell and then Reopen it as administrator then copy and paste the lines of text below and hit Enter
code --install-extension bierner.markdown-mermaid
code --install-extension bracketpaircolordlw.bracket-pair-color-dlw
code --install-extension christian-kohler.npm-intellisense
code --install-extension dbaeumer.vscode-eslint
code --install-extension DavidAnson.vscode-markdownlint
code --install-extension eriklynd.json-tools
code --install-extension esbenp.prettier-vscode
code --install-extension ms-vscode.live-server
code --install-extension mgmcdermott.vscode-language-babel
code --install-extension MS-vsliveshare.vsliveshare
code --install-extension ms-vscode.wordcount
code --install-extension oderwat.indent-rainbow
code --install-extension ritwickdey.LiveServer
code --install-extension shengchen.vscode-checkstyle
code --install-extension skyran.js-jsx-snippets
code --install-extension spywhere.guides
code --install-extension streetsidesoftware.code-spell-checker
code --install-extension vscjava.vscode-gradle
code --install-extension vscjava.vscode-java-pack
code --install-extension vmware.vscode-spring-boot
code --install-extension VisualStudioExptTeam.vscodeintellicode
code --install-extension xabikos.javascriptsnippets
code --install-extension yzane.markdown-pdf
code --install-extension zainchen.json
code --install-extension usernamehw.errorlens

				
			

Mac Computer Setup

Java Student Computer Program Setup (Mac)


				
					#Open Terminal (it’s a program on your Mac - search for it under Launchpad)
#Copy and paste the line below


/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

#Press Enter

#Your terminal will ask you to run 2 additional commands unique to you. You can copy and paste both of them in the command line and hit enter

#You may have to close Terminal and reopen it again before 
#running the next group of lines starting with brew

brew install cask google-chrome
brew install openjdk@17
brew install gradle
brew install cask visual-studio-code
brew install cask slack
brew install nodejs

#You may have to close Terminal and reopen it again before 
#running the next lines starting with code

code --install-extension bierner.markdown-mermaid
code --install-extension bracketpaircolordlw.bracket-pair-color-dlw
code --install-extension christian-kohler.npm-intellisense
code --install-extension dbaeumer.vscode-eslint
code --install-extension DavidAnson.vscode-markdownlint
code --install-extension eriklynd.json-tools
code --install-extension esbenp.prettier-vscode
code --install-extension ms-vscode.live-server
code --install-extension mgmcdermott.vscode-language-babel
code --install-extension MS-vsliveshare.vsliveshare
code --install-extension ms-vscode.wordcount
code --install-extension oderwat.indent-rainbow
code --install-extension ritwickdey.LiveServer
code --install-extension shengchen.vscode-checkstyle
code --install-extension skyran.js-jsx-snippets
code --install-extension spywhere.guides
code --install-extension streetsidesoftware.code-spell-checker
code --install-extension vscjava.vscode-gradle
code --install-extension vscjava.vscode-java-pack
code --install-extension vmware.vscode-spring-boot
code --install-extension VisualStudioExptTeam.vscodeintellicode
code --install-extension xabikos.javascriptsnippets
code --install-extension yzane.markdown-pdf
code --install-extension zainchen.json
code --install-extension usernamehw.errorlens