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
Recently updated conda, using conda update --all. I have conda forge, so I should be using the latest recipes. On attempting to import pandas:
Code Sample, a copy-pastable example if possible
importpandas---------------------------------------------------------------------------ImportErrorTraceback (mostrecentcalllast)
<ipython-input-3-d6ac987968b6>in<module>()
---->1importpandas/home/auerilas/anaconda3/lib/python3.5/site-packages/pandas/__init__.pyin<module>()
5657frompandas.util._print_versionsimportshow_versions--->58frompandas.io.apiimport*59frompandas.util._testerimporttest60importpandas.testing/home/auerilas/anaconda3/lib/python3.5/site-packages/pandas/io/api.pyin<module>()
67frompandas.io.parsersimportread_csv, read_table, read_fwf---->8frompandas.io.clipboard.clipboardimportread_clipboard9frompandas.io.excelimportExcelFile, ExcelWriter, read_excel10frompandas.io.pytablesimportHDFStore, get_store, read_hdf/home/auerilas/anaconda3/lib/python3.5/site-packages/pandas/io/clipboard/__init__.pyin<modu$
e>()
101102-->103copy, paste=determine_clipboard()
104105__all__= ["copy", "paste"]
/home/auerilas/anaconda3/lib/python3.5/site-packages/pandas/io/clipboard/__init__.pyindeter$
ine_clipboard()
74pass75else:
--->76returninit_qt_clipboard()
7778if_executable_exists("xclip"):
/home/auerilas/anaconda3/lib/python3.5/site-packages/pandas/io/clipboard/clipboards.pyininit_qt_clipboard()
47definit_qt_clipboard():
48# $DISPLAY should exist--->49fromPyQt4.QtGuiimportQApplication5051# use the global instance if it existsImportError: Nomodulenamed'PyQt4.QtGui'
I can run this following:
In [14]: import PyQt5
In [15]: import PyQt4
In [16]: import PyQt5.QtGui
In [17]: import PyQt4.QtGui
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-17-43468025f39e> in <module>()
----> 1 import PyQt4.QtGui
ImportError: No module named 'PyQt4.QtGui'
Any thoughts on how to proceed from here?
The text was updated successfully, but these errors were encountered:
This is fixed in master and we'll be release 0.20.2 before too long. In the meantime, it seems like removing the pyqt4 directory in your site-packages should fix the problem.
Recently updated conda, using conda update --all. I have conda forge, so I should be using the latest recipes. On attempting to import pandas:
Code Sample, a copy-pastable example if possible
I can run this following:
Any thoughts on how to proceed from here?
The text was updated successfully, but these errors were encountered: