Created
March 21, 2023 14:35
-
-
Save developer-sdk/5c85996fc7b12f2b16bfec01df7679ce to your computer and use it in GitHub Desktop.
파이썬 빌드
This file contains hidden or 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
| sudo apt update | |
| sudo apt install -y build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev | |
| wget -e use_proxy=on https://www.python.org/ftp/python/3.6.9/Python-3.6.9.tgz | |
| tar zxf Python-3.6.9.tgz | |
| cd Python-3.6.9/ | |
| ./configure --enable-optimizations | |
| sudo make altinstall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment