我是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。
3条答案
按热度按时间c7rzv4ha1#
这个错误消息告诉你
File "/xxxx/xxxx/Library/Application Support/JetBrains/IdeaIC2021.1/plugins/python-ce/helpers/pycharm/_jb_pytest_runner.py"
试图导入pytest
,但是找不到包,也就是说,失败的原因不是文件的存在,而是找不到pytest
来导入它。使用以下命令安装
pytest
相应地更改
python3
以使用您在IDE中使用的特定python安装。wribegjk2#
这是因为您没有所需的环境,因为您使用Pycharm,所以可以尝试安装pytest.https://blog.finxter.com/how-to-install-a-library-on-pycharm/
vkc1a9a23#
This适用于我。重复以下内容: