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
Traceback (most recent call last):
File "C:\Users\xxxx\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\stream_viewer\data\stream_info.py", line 99, in refresh
self._data = self._data.append(new_df.drop(columns=['_merge']), ignore_index=True)
File "C:\Users\xxxx\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\pandas\core\generic.py", line 5989, in getattr
return object.getattribute(self, name)
AttributeError: 'DataFrame' object has no attribute 'append'
I get the above error whenever I run
python3 -m stream_viewer.applications.main in cmd. I'm new to python and I'm not sure what this means. Any help is appreciated. I do have all the packages installed.
The text was updated successfully, but these errors were encountered:
The latest version of pandas breaks backward compatibility with some function calls used in lsl_viewer. You can resolve this by updating your conda environment to install pandas=1.5.*, or we just merged in a pull request that updates the conda-environment.yml and locks pandas to <2.0, so you can also pull the repo and then create a new conda environment from the updated conda-environment.yml
@insane-dreamer@rajshekarreddy97
I'm experiencing the same issue. I attempted to downgrade Pandas and NumPy, but now I'm encountering different errors. Could you please share the Python version and dependency versions that work correctly?
Hello, any idea how to fix the below issue?
Traceback (most recent call last):
File "C:\Users\xxxx\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\stream_viewer\data\stream_info.py", line 99, in refresh
self._data = self._data.append(new_df.drop(columns=['_merge']), ignore_index=True)
File "C:\Users\xxxx\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\pandas\core\generic.py", line 5989, in getattr
return object.getattribute(self, name)
AttributeError: 'DataFrame' object has no attribute 'append'
I get the above error whenever I run
python3 -m stream_viewer.applications.main in cmd. I'm new to python and I'm not sure what this means. Any help is appreciated. I do have all the packages installed.
The text was updated successfully, but these errors were encountered: