wget https://www.python.org/ftp/python/3.13.3/Python-3.13.3.tgz
tar -xvf Python-3.13.3.tgz
cd Python-3.13.3
./configure --prefix=/usr/local/python3.13.3
make && make install
如果有类似警告 或者pip3未加入环境变量
Installing collected packages: pip
WARNING: The scripts pip3 and pip3.13 are installed in '/usr/local/python3.13.3/bin' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed pip-25.0.1
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning.
编辑你的 shell 配置文件(如 .bashrc
、.zshrc
或 /etc/profile
)添加如下内容:
vim /etc/profile
export PATH="/usr/local/python3.13.3/bin:$PATH"
source /etc/profile