/usr/bin/python: No module named pytest
时间: 2023-08-09 20:10:24 浏览: 203
解决python 找不到module的问题
这个错误通常意味着你的系统中没有安装 pytest 模块。你可以通过以下命令使用 pip 安装 pytest:
```
pip install pytest
```
如果你使用的是 Python3,请使用 pip3 来安装:
```
pip3 install pytest
```
安装完成后,你应该能够成功运行 pytest。如果问题仍然存在,请确保你的 Python 环境配置正确,并且 pip 安装的模块路径已经添加到系统的 PATH 环境变量中。
阅读全文