-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinit_docker.sh
More file actions
25 lines (21 loc) · 768 Bytes
/
init_docker.sh
File metadata and controls
25 lines (21 loc) · 768 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
# Ubuntu 18.04
# common
apt update
apt install tmux git locales htop ruby silversearcher-ag fasd git-lfs zsh tree
locale-gen en_US.UTF-8
chsh -s $(which zsh)
# for pyenv
# https://github.com/pyenv/pyenv/wiki#suggested-build-environment
apt install make build-essential libssl-dev zlib1g-dev \
libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm \
libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev
# for scipy
apt install libblas-dev liblapack-dev
apt install gfortran
# install latest neovim
curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
chmod u+x nvim.appimage
./nvim.appimage --appimage-extract
./squashfs-root/AppRun --version
mv squashfs-root /
ln -s /squashfs-root/AppRun /usr/bin/nvim