Skip to content

Instantly share code, notes, and snippets.

@masamitsunamioka
Last active April 28, 2018 06:36
Show Gist options
  • Save masamitsunamioka/16ca58b612ee09de31a35975fe9d3049 to your computer and use it in GitHub Desktop.
Save masamitsunamioka/16ca58b612ee09de31a35975fe9d3049 to your computer and use it in GitHub Desktop.
Building Python3

Building Python3

References

Build

# tar -Jxf Python-3.?.?.tar.xz
# cd Python-3.?.?
# ./configure --enable-optimizations
# make
# make altinstall
# echo $?
# ln -s /usr/local/bin/python3.6 /usr/local/bin/python3
# ln -s /usr/local/bin/pip3.6    /usr/local/bin/pip3
# pip3 install --upgrade pip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment