centos7.6:安装python、miniconda
2021-09-14 本文已影响0人
玩转测试开发
默认配置下:腾讯云,阿里云是已经预装了Python环境的,如果购买的是centos7.6的服务。可以直接使用输入命令:python / python3,分别将运行 python2.7.5 和 python3.6.8。如下图所示:
图片安装其他版本Python3:使用miniconda,自给自足,需要什么python包自己安装。
新建1个文件夹:
mkdir minicondafiles
下载miniconda:
清华大学开源软件站,使用国内资源下载速度比较快
https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/?C=M&O=A
例如:Miniconda3-4.6.14-Linux-x86_64.sh
下载完成后上传到服务器路径minicondafiles中。可使用winscp上传。
cd minicondafiles
bash Miniconda3-4.6.14-Linux-x86_64.sh
期间会遇到多次需要人为确认的操作
1、一开始提示需要点击 ENTER 键;
2、安装条款先按 Q 键直接跳到条款最后,然后按 ENTER 键;
3、提示是否修改miniconda安装路径,不进行修改的话直接 ENTER 键;
4、接下去的操作全部输入 yes 就可以。
Miniconda3 will now be installed into this location:
/root/miniconda3
- Press ENTER to confirm the location
- Press CTRL-C to abort the installation
- Or specify a different location below
如果操作失误导致:提示ERROR: File or directory already exists: '/root/miniconda3'
请cd /root 进行删除。
安装完成则提示:
Thank you for installing Miniconda3!
最后更新保存配置
source /root/.bashrc
conda -V
image.gif
安装完成:
图片conda -V
图片创建环境:例如创建3.9.2环境
conda create -n py392env python=3.9.2 -y
列出当前环境中的所有软件包:
conda env list
激活环境:
conda activate py392env
退出环境:
conda deactivate
图片
微信公众号:玩转测试开发
欢迎关注,共同进步,谢谢!