Installation when beginning
pip install ipywidgets
jupyter nbextension enable --py widgetsnbextension
apt install g++ -y
apt-get install build-essentials
apt-get install curl
Additional customization for bash
-
Install sudo https://unix.stackexchange.com/questions/354928/bash-sudo-command-not-found
su - apt-get install sudo -y usermod -aG sudo root
-
Install zsh first https://github.com/ohmyzsh/ohmyzsh/wiki/Installing-ZSH#install-and-set-up-zsh-as-default
sudo apt install zsh
-
Make zsh default shell, and also on ssh VSCode
chsh -s $(which zsh)
// terminal settings "terminal.integrated.defaultProfile.linux": "zsh",
-
Install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
- Oh-my-zsh configuration: https://l-yohai.github.io/VSCode-Terminal-Customizing/#more
-
make some space for zsh configuration wizard
typeset -i10 COLUMNS=50 typeset -i10 LINES=23
- run configuration wizard with the following instruction https://github.com/romkatv/powerlevel10k#configuration-wizard
how to connect github remote with upstage server
After initializing zsh, you have to register github 2fa for ssh
git clone https://github.com/boostcampaitech2/klue-level2-nlp-15
git config --global user.email "<useremail>"
git config --global user.name "<username>"
empty trash bins
rm -rf ~/.local/share/Trash/*