linux上源码安装git和python
正文
安装python
$ sudo yum install yum-utils -y;
$ sudo yum-builddep python3 -y
$ cd /tmp; wget https://www.python.org/ftp/python/3.8.12/Python-3.8.12.tgz && tar -zxvf Python-3.8.12.tgz
$ cd Python-3.8.12
$ ./configure --enable-shared --enable-optimizations --prefix=/usr
$ make
$ sudo make install
安装git
$ cd /tmp
$ export GIT_VER=2.30.4 && wget -L https://github.com/git/git/archive/refs/tags/v$GIT_VER.tar.gz
$ tar -xvf v$GIT_VER.tar.gz
$ cd git-$GIT_VER
$ make configure
$ ./configure --prefix=/usr
$ make all doc info
$ sudo make install install-doc install-html install-info
参考
Git - Installing Git
3. Configure Python — Python 3.12.0a0 documentation