gpt4 book ai didi

pandas - 读取剪贴板在 jupyter 或终端中不起作用

转载 作者:行者123 更新时间:2023-12-04 00:31:51 25 4
gpt4 key购买 nike

我正在学习 pandas,但遇到了 read_clipboard 问题。

nfl_frame = pd.read_clipboard()

这是我得到的错误

    AttributeError                            Traceback (most recent call last)
<ipython-input-30-cab596b16d61> in <module>()
----> 1 nfl = pd.read_clipboard()

/home/aditya/anaconda3/lib/python3.5/site-packages/pandas/io/clipboard.py in read_clipboard(**kwargs)
18 from pandas.io.parsers import read_table
19 text = clipboard_get()
---> 20 text = text.decode('UTF-8')
21
22 # try to decode (if needed on PY3)

AttributeError: 'str' object has no attribute 'decode'

clipboard.py 文件的一部分

from pandas.util.clipboard import clipboard_get
from pandas.io.parsers import read_table
text = clipboard_get()
text = text.decode('UTF-8')

最佳答案

异常错误信息告诉你需要安装一些额外的辅助软件:

"Pyperclip requires the gtk, PyQt4, or PySide module installed, or either the xclip or xsel command"

您可以安装其中任何一个来使其正常工作。当您在 Ubuntu 上开发时,最简单的方法可能是安装 xclipxsel:

sudo apt-get install xclip

关于pandas - 读取剪贴板在 jupyter 或终端中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49817934/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com