Created
October 18, 2022 19:00
-
-
Save seym45/164f2acf27a583a91409a99f89ebfa96 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 dnf install wget yum-utils make gcc openssl-devel bzip2-devel libffi-devel zlib-devel | |
wget https://www.python.org/ftp/python/3.10.8/Python-3.10.8.tgz | |
tar xzf Python-3.10.8.tgz | |
cd Python-3.10.8 | |
sudo ./configure --with-system-ffi --with-computed-gotos --enable-loadable-sqlite-extensions --enable-optimizations | |
sudo make -j ${nproc} | |
sudo make altinstall | |
sudo rm Python-3.10.8.tgz | |
python3.10 -V | |
pip3.10 -V |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment