标签:inux python 变量 环境 绝对路径 原因 shell脚本 shell local
linux执行crotab是python脚本不生效解决方案
原因:
环境变量没有加载
解决方案:
1、使用shell脚本去执行python脚本
2、脚本内容路径需要绝对路径
3、加载环境变量:source /etc/profile
如:
#!/bin/bash
source /etc/profile
cd /home/webops/xg/;
/usr/local/python3/bin/python3 /home/webops/xg/NCP_new_find.py;
标签:inux python 变量 环境 绝对路径 原因 shell脚本 shell local
原文地址:https://www.cnblogs.com/qiangyuzhou/p/13500711.html