You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the clipboard package, I see pandas is using pyperclip
the problem is that pyperclip uses PyQt4 when deciding to use Qt for the linux clipboard, which can create a conflict if trying to embed pandas into a PyQt5 or PySide application for example
In the clipboard package, I see pandas is using pyperclip
the problem is that pyperclip uses PyQt4 when deciding to use Qt for the linux clipboard, which can create a conflict if trying to embed pandas into a PyQt5 or PySide application for example
I think the simplest solution is to use qtpy from the Spyder team, so replace:
with
I am currently working on a PyQt5 based pandas data visualization program and this is a problem I have encountered in the past.
The text was updated successfully, but these errors were encountered: