[python]各种配置方法
一、更换pip国内源
文章来源:https://zhuanlan.zhihu.com/p/109939711
(一)永久更换
# 清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
# 或:
# 阿里源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# 腾讯源
pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple
# 豆瓣源
pip config set global.index-url http://pypi.douban.com/simple/
(二)临时更换
pip install markdown -i https://pypi.tuna.tsinghua.edu.cn/simple
二、linux系统源码安装python
文章来源:Ubuntu 下安装最新 Python3.10 教程 (源码安装)_Z.Q.Feng的博客-CSDN博客_ubuntu源码安装python
(一)apt安装相关依赖库
# 更新源
sudo apt-get update
# 安装python3依赖库
sudo apt-get install libgispython3.10.4
sudp apt-get install libpython3.10-stdlib
(二)下载源码包并解压
-
官网下载最新版的 xz包
-
解压tar包:
# cd到下载的xz包所在文件夹(用ls查看) cd ~/下载 # 解压 tar xvJf Python-3.10.5.tar.xz
(三)源码安装python3.10.5
1、编译安装
# 进入刚才解压的文件目录
cd ~/下载/Python-3.10.5
# 设置编译参数,即输出文件目录:
./configure --prefix=/usr/local/python3.10
# 编译:需要等比较长时间
make
# 编译后安装
sudo make install
---------------------------------------------------------
# 成功后会出现
>>>
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
Successfully installed pip-21.2.3 setuptools-57.4.0
WARNING: Running pip as the ‘root’ user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
2、设置软连接
# 进入/usr/bin目录
cd /usr/bin
# 查看连接情况
ll | grep python
# 删除原有的软连接
sudo rm ./python
sudo rm ./pip
sudo rm ./pip3
# 设置新的软连接到新安装的python版本
sudo ln -s /usr/local/python3.10/bin/python3.10 /usr/bin/python
sudo ln -s /usr/local/python3.10/bin/pip3.10 /sur/bin/pip
sudo ln -s /usr/local/python3.10/bin/pip3.10 /sur/bin/pip3
注:这里我们不能将系统中的 python3 命令链接到 python3.10 版本(这里我已经踩坑),因为 python3.10 版本还是发行版本,并不是稳定版本,若更改后则会导致 Ubuntu 系统下的很多 python 文件无法打开(比如你的 gnome 终端)!
3、检验
python -V
# 显示
Python3.10.5
原创文章,作者:kepupublish,如若转载,请注明出处:https://blog.ytso.com/272849.html