anaconda中python环境初始化

anaconda是管理python环境的一个理想化工具,主要是免费,官网可以简单下载安装,目前支持windows, mac, linux系统的安装。
最近为了使用aliyun的oss python api,通过anaconda新建了一个隔离环境,最后想将脚本自动化,每天都执行一次,可是有点问题,报如下错误:

CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
To initialize your shell, run

    $ conda init <SHELL_NAME>

Currently supported shells are:
  - bash
  - fish
  - tcsh
  - xonsh
  - zsh
  - powershell

See 'conda init --help' for more information and options.

IMPORTANT: You may need to close and restart your shell after running 'conda init'.

后来在博客上找到,是因为conda activate要初始化一个环境,就是要执行一个脚本。脚本的位置,可以在bash中找到,大致是这样的一句话。

. /home/hocker/anaconda3/etc/profile.d/conda.sh 

然后就可以脚本中添加

 conda activate oss2 

之类的环境激活语句了。

参考

在Linux的shell脚本里激活conda 虚拟环境

非常感谢 luokid12138 博主。和crontab结合就可以解决问题了。

你可能感兴趣的:(工具使用,python)