Files
dotfiles/setup/python.sh
2021-11-28 11:39:40 +01:00

25 lines
451 B
Bash
Executable File

#!/bin/sh
# Install Pyenv
curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash
# Activate Pyenv
export PATH="~/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
pyenv install 2.7.17
pyenv install 3.8.5
pyenv virtualenv 2.7.17 neovim2
pyenv virtualenv 3.8.5 neovim3
pyenv activate neovim2
pip2 install neovim
pyenv activate neovim3
pip3 install neovim
pip3 install awscli