疑问:为什么已经安装好了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。