Linux CentOS 编绎安装Python 3.5

先决条件(若无安装,则不能编绎使用idle3):
yum install tk-devel

xz -d Python-3.5.0.tar.xz
tar zxf Python-3.5.0.tar
cd Python-3.5.0
./configure --prefix=/opt/python3
make
sudo make install
ln -s /opt/python3/bin/python3 ~/bin/python3
ln -s /opt/python3/bin/idle3 ~/bin/idle3
(或链接至/usr/bin/python3, /usr/bin/idle3)

相关文章:

  • 2021-10-14
  • 2021-06-29
  • 2021-07-16
  • 2021-08-01
  • 2021-09-17
  • 2021-07-23
  • 2021-10-31
  • 2021-11-23
猜你喜欢
  • 2021-09-20
  • 2021-12-15
  • 2021-07-09
  • 2022-02-04
  • 2022-02-28
  • 2022-01-18
  • 2022-01-20
相关资源
相似解决方案