-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.sh
47 lines (41 loc) · 1.41 KB
/
setup.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
36
37
38
39
40
41
42
43
44
45
46
47
# Personal git config settings
if [ "$1" ]
then
if [ $1 = '-n' ]
then
echo "Setting git config to Nicky Pochinkov"
git config --global user.name "Nicky Pochinkov"
git config --global user.email "[email protected]"
fi
if [ $1 = "-i" ]
then
# Weights & Biases
echo "
machine api.wandb.ai
login user
password 7d8ccc80648222cf13a2e1ab9a56484e521be926" >> ~/.netrc
# Add poetry to PATH
echo 'export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/cuda/lib64' >> ~/.bashrc
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
echo 'alias py="poetry run python"' >> ~/.bashrc
echo 'alias t0="tmux attach-session -t 0 || tmux new -s 0"' >> ~/.bashrc
echo 'export WANDB_ENTITY=seperability' >> ~/.bashrc
# Add poetry to current bash session PATH
export PATH="$HOME/.local/bin:$PATH"
# install Tmux Plugins Manager
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
fi
# Sometimes poetry install fails and says "pending"
if [ $1 = '-k' ]
then
echo "export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring" >> ~/.bashrc
fi
fi
# Dependencies (using Poetry rather than pip)
apt install python3 python3-pip vim -y
apt install python-is-python3 -y
sudo ln -s /usr/bin/python3 /usr/bin/python
curl -sSL https://install.python-poetry.org | python -
poetry config virtualenvs.in-project true
poetry install
poetry run pip install torch