1

我正在使用 Jupyter 笔记本系统。我已经使用 cmd 作为 pip install tabulate 安装了表格。要求也得到满足,但仍然出现此错误。

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-2-9a451b8ebc97> in <module>
      1 import glob
      2 import pandas as pd
----> 3 from tabulate import tabulate
      4 def print_helper():
      5         print()

ModuleNotFoundError:没有名为“制表”的模块

任何帮助将不胜感激。

4

1 回答 1

0

你只需要tabulate像这样安装:

pip install tabulate
于 2021-11-30T08:12:36.167 回答