欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

anaconda实现linux python版本切换

程序员文章站 2022-04-18 21:55:14
...

一、版本切换

安装anaconda会覆盖本机python版本,在bashrc上加上这句,即可切回本机的python3.5。

sudo gedit ~/.bashrc
alias python='/usr/bin/python3.5'
source ~/.bashrc

二、安装其他python版本

conda create --name py38 python=3.8
conda activate py38

 

相关标签: Python python