教你实现Ubuntu安装Python
更新时间:2023年06月14日 09:04:51 作者:代码的路
这篇文章主要为大家介绍了Ubuntu安装Python的实现过程详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
配置环境
Ubuntu安装Python的方式与其他Linux系统有所不同,在这里介绍一下。
切换的国内源:
sudo gedit /etc/apt/sources.list
将原有的源注释掉,添加如下内容:
#清华源 deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse deb 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.8 sudo 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 .pip touch pip.conf
用vim编辑pip.conf文件
vim pip.conf
内容如下:
[global] index-url = https://mirrors.aliyun.com/pypi/simple [install] trusted-host=mirrors.aliyun.com
以上就是教你实现Ubuntu安装Python的详细内容,更多关于Ubuntu安装Python的资料请关注脚本之家其它相关文章!
相关文章
python DataFrame中loc与iloc取数据的基本方法实例
这篇文章主要给大家介绍了关于python DataFrame中loc与iloc取数据的基本方法,文中通过实例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下2022-02-02Python实现提取JSON文件中指定数据并保存至CSV或Excel内
这篇文章主要介绍了如何基于Python语言实现读取JSON格式的数据,并将提取到的数据保存到.csv格式或.xlsx格式的表格文件中,感兴趣的小伙伴可以了解下2023-08-08
最新评论