python 添加环境变量,如何在Python脚本中使用的值设置环境变量

I am having the following issue setting up an enviroment variable,looked at other examples set environment variable in python script ,one worked

1.I have a value in variable "version" in a python script.

2.Now,I need to set this as enviroment variable for BUILD_VER in windows(currently its in windoWs,prefer to make it generic across OS),normally a simple SET BUILD_VER=%version% in a batch file would do(this enviroment variable is used by another batchfile which makes a software build which I guess is unrelated here)

Now,coming and focusing to the problem.

Is there a way I can set BUILD_VER =VERSION in the same python script and pass it onto a batch file?any other ideas?i tried the following in a batch file but am not sure if the python script is running ?running the following doesnt output anything

@echo off

FOR /F %v IN ('build_ver.py 123637') DO SET BUILD_VER=%v

解决方案

You have not clearly specified the inter-relation of the several batch files and your python script, so lets analyze some of the possibilities:

The python script define the variable, execute a batch file that set the same variable and then the python script continue by itself and execute other batch files that you want have access to the variable defined in the first batch file. This is just not possible. Period.

The python script define the variable, execute the batch file that set the same variable and then the batch file continue and execute other batch files that inherits the variable. Perfectly valid. In this case the python script is just used to define the variable and start the first batch file.

The first batch file start execution, execute the python script just to get the value of the variable, define it and execute other batch files that inherits the variable. This is the simplest solution; in this case the python script is used only to get the value of the variable.

The way to implement the last solution is like in your example:

@echo off

rem Execute python script passing to it the first parameter of this Batch file

FOR /F %%v IN ('build_ver.py %1') DO SET BUILD_VER=%%v

echo Value defined by python script: %BUILD_VER%

rem Call another Batch file that inherits this variable:

call AnotherBatch.bat

Note that in your code you missed a couple of percent signs in the FOR /F command...

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值