写点什么

Ubuntu 安装 Python

作者:代码的路
  • 2023-06-13
    北京
  • 本文字数:594 字

    阅读完需:约 2 分钟

原文链接


Ubuntu 安装 Python 的方式与其他 Linux 系统有所不同,在这里介绍一下。

配置环境

切换的国内源:


sudo gedit /etc/apt/sources.list
复制代码


将原有的源注释掉,添加如下内容:


#清华源deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiversedeb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiversedeb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiversedeb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
复制代码


更新apt-get


sudo apt-get update
复制代码


安装build-essential


sudo apt-get install build-essential
复制代码

安装 Python

安装 Python3.8:


sudo apt-get install python3.8sudo apt install python3-pip
复制代码


查看是否成功:


查看 Python 是否安装成功:


python3 --version
复制代码


输出版本号Python 3.8.5即表示安装成功。

Ubuntu 更换源

临时更换

使用阿里源:


pip install *** -i https://mirrors.aliyun.com/pypi/simple/ 
复制代码

永久更换

新建.pip 隐藏文件夹:


cd ~ mkdir .pip
复制代码


新建 pip.conf 文件:


cd .piptouch pip.conf 
复制代码


用 vim 编辑 pip.conf 文件


vim pip.conf 
复制代码


内容如下:


[global]index-url = https://mirrors.aliyun.com/pypi/simple[install]trusted-host=mirrors.aliyun.com
复制代码


学习更多编程知识,请关注我的公众号:


代码的路



发布于: 刚刚阅读数: 8
用户头像

代码的路

关注

公众号:代码的路 2023-01-10 加入

Java、Python、C++、图像处理、深度学习相关知识分享

评论

发布
暂无评论
Ubuntu安装Python_代码的路_InfoQ写作社区