本文介绍了从 cmd 运行时,pybot 未被识别为内部或外部命令的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 cmd 中运行以下命令时遇到问题:

I get an issue when running the following command, in cmd:

pybot --version

还给出了正确的环境变量路径

Also given the correct environmental variable path

C:\Python27
C:\Python27\scripts
C:\Python27\Lib\site-packages\robot

你有什么线索吗?

推荐答案

如果您正在使用较新的机器人框架(例如 3.1)并且您确实希望为 robot 指定一个别名(可能是因为使用了一些测试RIDE 中的运行程序),您可以在 C:\Python27\Scripts 中创建文件 pybot.bat ,内容如下:@回声关闭python -m 机器人%*

If you are using newer robotframework (like 3.1) and you really want to have an alias for robot (maybe because using some test runner like the one in RIDE), you can create the file pybot.batat C:\Python27\Scripts with the following content:@echo offpython -m robot %*

这篇关于从 cmd 运行时,pybot 未被识别为内部或外部命令的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 15:59