ubuntu18.04下安装python3.9.0

$ sudo apt update
$ sudo apt install software-properties-common
  • 将Deadsnakes PPA添加到系统的来源列表中:
   $ sudo add-apt-repository ppa:deadsnakes/ppa
  • 启用存储库后,请使用以下命令安装Python 3.9:
   $ sudo apt install python3.9
  • 通过键入以下命令验证安装是否成功:
   $ python3.9 --version

你可能感兴趣的:(Ubuntu,python,linux,ubuntu)