pytest不是内部命令

疑问:为什么已经安装好了pytest包,并且python环境变量配置好,但在pycharm或者cmd直接输入pytest还是说不是内部命令

原因:可能在python安装路径下的scripts目录里不存在pytest.exe

解决:

方法1. 在scripts目录下启动cmd执行pip install -U pytest,看到scripts下有pytest.exe表示安装好了,问题解决。

方法2. 在命令行想运行pytest时,用python -m pytest即可正常执行pytest。

上一篇:django-类视图


下一篇:『德不孤』Pytest框架 — 1、Pytest测试框架介绍