linux 在Python 3.4中导入表格时遇到问题

a2mppw5e  于 12个月前  发布在  Linux
关注(0)|答案(4)|浏览(124)

我刚刚安装了tabulate for python,以便在终端中对我的输出进行制表。

ImportError: No module named 'tabulate'

字符串
但是,每当我把它导入到python2.7控制台时,它似乎都能工作。你能帮我试着让它在python3.4中工作吗?我的操作系统是Linux。

dced5bon

dced5bon1#

对于python3,我注意到简单的“pip3 install tabulate”并没有把库放在正确的位置。
Python 3:

python3 -m pip install tabulate

字符串

bfnvny8b

bfnvny8b2#

好的,只是通过安装python-pip 3修复了它,并通过安装tabulate

pip3 install tabulate

字符串

wljmcqd8

wljmcqd83#

在Mac上使用Homebrew

brew reinstall python-tabulate

字符串
可能有帮助。我在更新platformio后遇到了这个问题。这解决了问题。

ovfsdjhp

ovfsdjhp4#

你必须以管理员的身份打开cmd才能安装tabulate,它对我很有效

相关问题