想在python脚本里面source .profile,调用os.system后在当前运行的脚本里环境变量没有变呢?求解决方法。

 我来答
ace_fei
2014-01-27 · TA获得超过2013个赞
知道小有建树答主
回答量:734
采纳率:100%
帮助的人:723万
展开全部
因为你调用os.system执行source .profile命令是在子进程中进行的,不能改变python当前进程的环境变量

你应该修改os.environ。
一个mapping对象表示环境。例如,os.environ['HOME'] ,表示的你自己home文件夹的路径(某些平台支持,windows不支持)
,它与C中的getenv("HOME")一致。
大漠小北
2014-01-27 · TA获得超过1138个赞
知道小有建树答主
回答量:365
采纳率:0%
帮助的人:459万
展开全部
在Python中环境变量的正确获取方法应该是os.environ返回的是个dict类型的数据
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
鸡毛山维修弟
2018-12-07
知道答主
回答量:1
采纳率:0%
帮助的人:796
展开全部
source is not an executable command, it's a shell builtin.
The most usual case for using source is to run a shell script that changes the environment and to retain that environment in the current shell. That's exactly how virtualenv works to modify the default python environment.
Creating a sub-process and using source in the subprocess probably won't do anything useful, it won't modify the environment of the parent process, none of the side-effects of using the sourced script will take place.
Python has an analogous command, execfile, which runs the specified file using the current python global namespace (or another, if you supply one), that you could use in a similar way as the bash command source.
https://stackoverflow.com/questions/7040592/calling-the-source-command-from-subprocess-popen
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式