首页 > 系统相关 >ubuntu18.04 apt 安装python3.8

ubuntu18.04 apt 安装python3.8

时间:2022-08-22 16:04:31浏览次数:123  
标签:Python sudo apt python3.8 install ubuntu18.04 3.8

  1. Run the following commands as root or user with sudo access to update the packages list and install the prerequisites:

    sudo apt updatesudo apt install software-properties-common
  2. Add the deadsnakes PPA to your system’s sources list:

    sudo add-apt-repository ppa:deadsnakes/ppa

    When prompted press Enter to continue:

    Press [ENTER] to continue or Ctrl-c to cancel adding it.
  3. Once the repository is enabled, install Python 3.8 with:

    sudo apt install python3.8
  4. Verify that the installation was successful by typing:

    python3.8 --version
    Python 3.8.0

    At this point, Python 3.8 is installed on your Ubuntu system, and you can start using it

 

https://linuxize.com/post/how-to-install-python-3-8-on-ubuntu-18-04/

 

标签:Python,sudo,apt,python3.8,install,ubuntu18.04,3.8
From: https://www.cnblogs.com/hshy/p/16613069.html

相关文章

  • Chapter 08 - RaiseMan ( C# 实现 + NSDocument类)
    此例子实现了不用ArrayController,基于view-basedtableview实现添加和删除。当然,也可以用ArrayController实现,这样可以省去NSTableViewDelegate和NSTableViewDataSource......
  • ubuntu apt命令
    apt等于apt-getaptinstall安装软件包aptremove移除软件包aptpurge移除软件包及配置文件aptupdate刷新存储库索引aptupgrade升级所有可升级的软件包aptautoremove......
  • Chapter 08 - RaiseMan (C# 实现 + Cell-based tableview绑定)
    这个代码主要展示如何绑定ArrayController到Cell-basedTableview。在发代码前,需要注意几点。1.Person为自定义的class,但是一定要Register为PersonModel。格式{自定义c......
  • cesium教程-无人机航拍倾斜摄影素材用ContextCapture转换成OSGB格式
    首先软件的下载和安装参考下面链接http://www.xue51.com/soft/53013.html 0、首先打开软件,要打开2个哦。打数据处理开后台ContextCaptureEngine打开处理工具Contex......
  • 在 Ubuntu18.04集成Zeek与ELK
    Elasticsearch:一个分布式RESTful搜索引擎,用于存储所有收集的数据。Logstash:ElasticStack的数据处理组件,用于将传入数据发送到Elasticsearch。Kibana:用于搜索和可视......
  • U盘安装ubuntu18.04 LTS图文详细过程(转)
    原文:https://blog.csdn.net/u014453443/article/details/88049804制作U盘引导盘,安装Ubuntu18.04LTS系统一、下载Ubuntu18.04LTS系统的iso文件镜像下载地址https://ww......