ModuleNotFoundError: No module named 'pytest'
时间: 2023-10-12 07:14:55 浏览: 202
使用python selenium pytest 框架 进行 flipkart 自动化测试.zip
这个错误是因为你的 Python 环境中没有安装 pytest 模块,可以通过以下命令来安装:
```
pip install pytest
```
如果你正在使用 Anaconda 环境,可以使用以下命令来安装:
```
conda install pytest
```
安装完成后,你就可以在 Python 脚本中使用 pytest 模块了。
阅读全文