ImportError libx86_64-linux-gnulibstdc++so6 version GLIBCXX_3429 not found required by mntglusterhomebaohaoanaconda3envspytorchlibpython38site-packagespandas_libswindowaggregationscpython-38-x86_64-li
This error message indicates that the version of libstdc++.so.6 library found on your system does not have the required GLIBCXX_3.4.29 version. The library file is needed by the aggregations module of the pandas library.
To resolve this issue, you can try the following steps:
-
Ensure that you have the latest version of libstdc++ installed on your system. You can use the package manager of your Linux distribution to check and update the library. For example, on Ubuntu, you can use the command:
sudo apt update sudo apt install libstdc++6 -
If you are using Anaconda, you can try creating a new conda environment and reinstalling pandas. This will ensure that the required dependencies are installed correctly. You can create a new environment using the following command:
conda create --name myenvActivate the new environment:
conda activate myenvAnd then install pandas:
conda install pandasThis will create a new environment with a fresh installation of pandas and its dependencies.
-
If the above steps do not work, you can try installing pandas using pip instead of conda. First, activate your desired conda environment:
conda activate myenvThen, uninstall pandas:
conda uninstall pandasAnd finally, install pandas using pip:
pip install pandasThis will install pandas and its dependencies using pip, which might resolve any dependency conflicts.
If none of the above steps work, you may need to consider updating your operating system or using a different environment where the required library versions are available
原文地址: https://www.cveoy.top/t/topic/inGg 著作权归作者所有。请勿转载和采集!