更新批处理文件中的路径

时间:2013-07-07 19:00:27

标签: windows batch-file path pip activepython

我正在编写一个安装活动python的脚本,然后“pip installs”两个库:

IF %ARCH%==%tb% msiexec.exe /i Python\ActivePython-2.7.2.5-win32-x86.msi /qb
pip install requests
pip install pyserial

当我跑步时,我得到:'pip' is not recognized as an internal or external command, ...

但是如果我在程序完成后拔出powershell,pip已被添加到我的路径中,并且列出的命令有效。

所以我的问题是:如何更新批处理文件中的路径,以便在不启动新进程的情况下使用pip?

1 个答案:

答案 0 :(得分:3)

你可以试试这个:

@echo off
set "path=%path%;C:\my path update"

半结肠显着。