linux 安装conda环境;Linux每次开机都要source /etc/profile新安装的环境才生效;linux 脚本开机自启动

参考:
https://www.cnblogs.com/nf01/articles/12874716.html
https://www.jianshu.com/p/edaa744ea47d

linux系统  安装conda

1、wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh

2、sh  miniconda.sh

中途安装可以自定义安装路径:
linux 安装conda环境;Linux每次开机都要source /etc/profile新安装的环境才生效;linux 脚本开机自启动_第1张图片

然后添加到系统环境:

1、修改环境变量

vim ~/.bashrc
在最后添加:
export PATH=~/miniconda2/bin:$PATH
注意具体的路径需要根据实际情况添加

2、重启环境变量:

source ~/.bashrc

基础命令:

conda create -n xxxx python=3.7   //创建python3.7的xxxx虚拟环境
conda activate xxxx               //开启xxxx环境
conda deactivate                  //关闭环境
conda env list                    //显示所有的虚拟环境

source activate snowflakes        //切换环境

Linux每次开机都要source /etc/profile新安装的环境才生效

参考:https://blog.csdn.net/qq_33240556/article/details/119648382

vim ~/.bashrc

添加一句:source /etc/profile
(修改不行可以强制修改保存)

3、linux 脚本开机自启动

参考:https://blog.csdn.net/qq_38316655/article/details/127180427

##1、在/etc/rc.local  加入运行的脚本,比如

****/**.sh

##2、可能不生效添加权限,查看权限
ls -lht /etc/rc.local

 ls -lht /etc/rc.d/rc.local
## 3、增加权限
chmod +x /etc/rc.d/rc.local

在这里插入图片描述

你可能感兴趣的:(python,知识点,python,airflow,r语言)