ModuleNotFoundError: No module named 'pytest' in IntelliJ IDEA

ModuleNotFoundError: No module named 'pytest' in IntelliJ IDEA

我是 python 的新手,正在尝试 运行 现有项目的代码。我收到以下错误:

Traceback (most recent call last):
  File "/xxxx/xxxx/Library/Application Support/JetBrains/IdeaIC2021.1/plugins/python-ce/helpers/pycharm/_jb_pytest_runner.py", line 2, in <module>
    import pytest
ModuleNotFoundError: No module named 'pytest'

文件存在于上述路径中。 我看到有很多关于此的问题,但似乎没有任何解决方案。 我正在使用 IntelliJ IDEA​​ IDE.

这是因为您没有所需的环境。 既然你用的是Pycharm,你可以试试安装pytest。 https://blog.finxter.com/how-to-install-a-library-on-pycharm/

错误消息告诉您 File "/xxxx/xxxx/Library/Application Support/JetBrains/IdeaIC2021.1/plugins/python-ce/helpers/pycharm/_jb_pytest_runner.py" 正在尝试导入 pytest 但找不到包。也就是说,失败的不是该文件的存在,而是找不到 pytest 以便导入它。

使用

安装pytest
python3 -m pip install pytest

相应地更改 python3 以使用您在 IDE.

中使用的 python 的特定安装