Last active
February 16, 2023 09:29
-
-
Save jmvrbanac/8793985 to your computer and use it in GitHub Desktop.
Install pyenv on Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get install git python-pip make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev curl | |
sudo pip install virtualenvwrapper | |
git clone https://github.com/yyuu/pyenv.git ~/.pyenv | |
git clone https://github.com/yyuu/pyenv-virtualenvwrapper.git ~/.pyenv/plugins/pyenv-virtualenvwrapper | |
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc | |
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc | |
echo 'eval "$(pyenv init -)"' >> ~/.bashrc | |
echo 'pyenv virtualenvwrapper' >> ~/.bashrc | |
exec $SHELL |
Adding virtualenv plugin installation in addition. Thanks for the gist
Updated version: https://gist.github.com/styk-tv/b160cd2e4a54472ba04a17f11b7faca5
How is pyenv not an apt-get package I can install with one command??
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Instead of,
Use