0

我正在使用 Perforce,并且有一个脚本可以根据我当前的任务检查各种文件。问题是我想为端口、用户和客户端存储环境变量,这样我就不必在每次从不同的计算机上运行脚本时都更改它。

为了访问 Perforce,我已按照下面发布的示例进行设置,并尝试使用 CMD 中的公式“p4 set P4CLIENT=value”更改客户端,其中“value”是 Python 中将分配给“p4.client”的值脚本。我不确定这是否是如何去做的,并希望得到任何帮助。

- 例子 -

from P4 import P4,P4Exception    # Import the module
p4 = P4()                        # Create the P4 instance
p4.port = "1666"
p4.user = "fred"
p4.client = "fred-ws"            # Set some environment variables
4

0 回答 0