我想创建一个包含要在Amazon S3上放置的Python 3.7的预编译版本的tarball。
在基于Red-Hat Enterprise Linux(RHEL)的AWS Linux AMI上,每次必须初始化新的AMI时,我都会下载源代码并编译Python 3.7。
yum
软件包管理器似乎没有预编译的Python 3.7版本。
wget https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tar.xz
tar xJf Python-3.7.0.tar.xz
cd Python-3.7.0
./configure
make
sudo make install
cd ..
rm -f Python-3.7.0.tar.xz
代码可以正常工作,但是启动时间太长。