Terminal
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Terminal
export JAVA_HOME=`/System/Library/Frameworks/JavaVM.framework/Versions/A/Commands/java_home -v "1.8"`
source ~/.bash_profile
Terminal
java -version
#OK if the output is as follows
java version "1.8.0_144"
Java(TM) SE Runtime Environment (build 1.8.0_144-b01)
Java HotSpot(TM) 64-Bit Server VM (build 25.144-b01, mixed mode)
Terminal
brew update
brew install gradle
Terminal
gradle -v
#OK if the output is as follows
------------------------------------------------------------
Gradle 6.3
------------------------------------------------------------
Build time: 2020-03-24 19:52:07 UTC
Revision: bacd40b727b0130eeac8855ae3f9fd9a0b207c60
Kotlin: 1.3.70
Groovy: 2.5.10
Ant: Apache Ant(TM) version 1.10.7 compiled on September 1 2019
JVM: 1.8.0_144 (Oracle Corporation 25.144-b01)
OS: Mac OS X 10.14.6 x86_64
Terminal
brew install groovy
Terminal
groovy -v
#OK if the output is as follows
Groovy Version: 3.0.3 JVM: 1.8.0_144 Vendor: Oracle Corporation OS: Mac OS X
Terminal
brew install nodebrew
Terminal
nodebrew -v
#OK if the output is as follows
nodebrew 1.0.1
:
Terminal
mkdir -p ~/.nodebrew/src
nodebrew install-binary v8.11.1
Terminal
nodebrew use v8.11.1
Terminal
nodebrew list
#OK if the output is as follows
v8.11.1
current: v8.11.1
Terminal
echo 'export PATH=$PATH:~/.nodebrew/current/bin' >> ~/.bashrc
source ~/.bashrc
Terminal
node -v
#OK if the output is as follows
v8.11.1
Terminal
npm -v
#OK if the output is as follows
5.6.0
2. Git
Terminal
brew install git
Terminal
echo 'export PATH="/usr/local/bin:$PATH"' >> ~/.bash_profile
source ~/.bash_profile
Terminal
git --version
#OK if the output is as follows
git version 2.26.2
Download the main body by google.
Terminal
code --install-extension MS-CEINTL.vscode-language-pack-ja
code --install-extension VisualStudioExptTeam.vscodeintellicode
code --install-extension leizongmin.node-module-intellisense
code --install-extension vscjava.vscode-java-debug
code --install-extension vscjava.vscode-java-dependency
code --install-extension vscjava.vscode-java-pack
code --install-extension vscjava.vscode-java-test
code --install-extension vscjava.vscode-maven
code --install-extension vscjava.vscode-spring-boot-dashboard
code --install-extension vscode-icons-team.vscode-icons
code --install-extension shardulm94.trailing-spaces
code --install-extension ionutvmi.path-autocomplete
code --install-extension redhat.vscode-yaml
code --install-extension eamodio.gitlens
code --install-extension donjayamanne.githistory
code --install-extension CoenraadS.bracket-pair-colorizer-2
code --install-extension GitHub.vscode-pull-request-github
code --install-extension IBM.output-colorizer
code --install-extension emilast.LogFileHighlighter
code --install-extension stevencl.addDocComments
Command to output a list of installed extensions
code --list-extensions | xargs -L 1 echo code --install-extension
Recommended Posts