-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
54 lines (46 loc) · 900 Bytes
/
install.sh
File metadata and controls
54 lines (46 loc) · 900 Bytes
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
brew install --cask \
bankid \
enpass \
firefox \
gpg-suite-pinentry \
intellij-idea \
joplin \
mactex \
mendeley \
microsoft-excel \
microsoft-powerpoint \
microsoft-word \
opera \
pycharm \
sage \
signal \
skype \
slack \
spotify \
sublime-text \
tor-browser \
tunnelblick \
virtualbox \
wireshark \
zoom \
zotero \
zulip
brew upgrade --cask
brew install \
gmp \
nmap \
openssl \
python \
python3 \
rust \
wget \
wireguard-tools
brew upgrade
brew unlink python && brew link --overwrite python # make sure python links to python2
#pip2 install --upgrade pip setuptools # upgrade to latest pip2
pip3 install --upgrade pip setuptools # upgrade to latest pip3
# never use the generic “python” and “pip”.
# always use “python[2/3]” and “pip[2/3]”.
pip3 install pygments
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh