Traceback (most recent call last): File "/Users/xiaotang/PycharmProjects/untitled2/SHIYOU.py", line 5, in <module> from networkx.tests.test_all_random_functions import np File "/Users/xiaotang/PycharmProjects/untitled2/venv/lib/python3.8/site-packages/networkx/tests/test_all_random_functions.py", line 1, in <module> import pytest ModuleNotFoundError: No module named 'pytest'
时间: 2023-09-10 19:11:25 浏览: 373
Mac下anaconda中Spyder打开报错Traceback(most recent call last)…问题
5星 · 资源好评率100%
这个错误提示是因为你的代码中缺少了 pytest 模块。你可以通过在命令行中输入以下命令来安装 pytest:
```
pip install pytest
```
如果你正在使用 PyCharm,你也可以在项目的虚拟环境中安装 pytest。步骤如下:
1. 打开 PyCharm,进入项目。
2. 点击菜单栏中的 File -> Settings。
3. 在左侧面板中选择 Project: your_project_name -> Python Interpreter。
4. 在右侧面板中选择 Packages 选项卡。
5. 在搜索框中输入 pytest。
6. 点击加号图标安装 pytest。
安装完成后,你应该可以成功运行代码了。
阅读全文