您的位置首页百科问答

ubuntu系统怎样从软件源下载软件

ubuntu系统怎样从软件源下载软件

的有关信息介绍如下:

ubuntu系统怎样从软件源下载软件

ubuntu系统自带软件中心,但是不是你想要的所有软件都能在软件中心找得到,所有,我们可以通过添加软件源的方式,用命令行下载软件。下面就以下载安装python3.6为例介绍一下如何通过软件源下载软件。

ubuntu默认的更新源很慢,可以添加国内的软件源。推荐添加清华大学的源。

源列表保存在/etc/apt/sources.list下。可以使用sudo gedit /etc/apt/sources.list打开。

deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted universe multiverse# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted universe multiversedeb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted universe multiversedeb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiversedeb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted universe multiverse# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted universe multiverse

将以上内容复制粘贴到列表里,保存。如下图。

下面举例安装python3.6(18.04版本自带的python已经是3.6了)

在终端输入:sudo add-apt-repository ppa:jonathonf/python-3.6(可以复制粘贴到终端里。复制和windows一样,Ctrl+C,粘贴是Ctrl+Shift+V)

输入密码以后的提示信息,回车即可。

用sudo apt-get update更新一下,然后sudo apt-get install python3.6安装。

可以看到,我的python3.6已经是最新版的了。

安装其他软件也可以用命令行的方式。

sudo add-apt-repository ppa: #添加源

每次添加源以后都需要sudo apt-get update一下,

然后sudo apt-get install 安装。

常用命令:

sudo apt upgrade (更新软件)

sudo apt dist-upgrade

sudo apt remove 加软件名称 (移除卸载软件)

sudo apt autoremove (彻底删除)