Open e3rd opened 3 years ago
using code pandas._libs.lib import *
instead of from pandas.tslib import NaTType
in the file /home/.../.local/lib/python3.8/site-packages/qtpandas/views/EditDialogs.py
next, if there is error :AttributeError: 'DataFrame' object has no attribute 'ix'
using the .loc
function instead, such as result = self._dataFrame.ix[row, col]
--> result = self._dataFrame.loc[row, col]
then,if there is error: AttributeError: 'DataFrame' object has no attribute set_value
using the ._set_value
function instead, such as self._dataFrame.set_value(row, col, value)
-->self._dataFrame._set_value(row, col, value)
I've suceeded by installing current version by
instead of an old version from 2016 by
However, running https://github.com/draperjames/qtpandas/blob/master/examples/BasicExample.py failed with
My versions: