Forked from amoilanen/install_python3.6_opensuse42.3.sh
Created
March 22, 2018 15:53
-
-
Save omushpapa/e1f44c9350d1b037cc5399d100cc747e to your computer and use it in GitHub Desktop.
Installing Python 3.6 on OpenSUSE Leap 42.3
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 | |
# Step 1. Install pyenv | |
git clone https://github.com/pyenv/pyenv.git ~/.pyenv | |
echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc | |
echo 'export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc | |
echo -e 'if command -v pyenv 1>/dev/null 2>&1; then\n eval "$(pyenv init -)"\nfi' >> ~/.bashrc | |
# Step 2. Install missing headers for all the Python modules to be built | |
sudo zypper install readline-devel sqlite3-devel libbz2-devel zlib-devel libopenssl-devel | |
# Step 3. Install the desired Python version | |
pyenv install 3.6.3 | |
# Step 4. Install virtualenv | |
sudo zypper install python3-virtualenv | |
# Step 5. Create a virtual environment for the installed Python and activate it | |
mkdir ~/pythons | |
cd ~/pythons | |
virtualenv -p ~/.pyenv/versions/3.6.3/bin/python3.6 python3.6.3 | |
source ./python3.6.3/bin/activate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment