-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.sh
executable file
·35 lines (31 loc) · 956 Bytes
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/bash -e
# Install Xcode Command Line Tools
xcode-select --install || true
# node-gyp rebuild issue. Enable command lint tools and ignore the warnings.
sudo xcode-select --switch /Library/Developer/CommandLineTools
# Rosetta 2 enables a Mac with Apple silicon to use apps built for a Mac with an Intel processor.
softwareupdate --install-rosetta
# Install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
# Install rust
./rust/install.sh
# Install Java
./java/install.sh
# Install cmd line tools through brew
./brew/install.sh
# Install gui apps through brew cask
./brew-cask/install.sh
# Install git
./git/install.sh
# Install zsh, oh my zsh, plugins, starship
./zsh/install.sh
# Install node, yarn, all global tools
./node/install.sh
# Install deno
./deno/install.sh
# Install python, packages and clis
./python/install.sh
# Instll latex
./latex/install.sh
# Install go
./go/install.sh