私はPython=に不慣れで、現在importing一部のライブラリで問題が発生しています。
私はPython 3.8を使用しています。
Pandasを「pip install pandas」を使用してCMDにインストールしました
Pythonフォルダに移動すると、Pandasがインストールされていることがわかります。
C:\ Users\VALENTINA\AppData\Local\Programs\Python\Python38-32\Lib\site-packages
しかし、スクリプトにPandas=をインポートしようとすると、このエラーメッセージが表示されます。
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
import pandas as pd
File "C:\Users\VALENTINA\AppData\Local\Programs\Python\Python38-32\lib\site-packages\pandas\__init__.py", line 55, in <module>
from pandas.core.api import (
File "C:\Users\VALENTINA\AppData\Local\Programs\Python\Python38-32\lib\site-packages\pandas\core\api.py", line 29, in <module>
from pandas.core.groupby import Grouper, NamedAgg
File "C:\Users\VALENTINA\AppData\Local\Programs\Python\Python38-32\lib\site-packages\pandas\core\groupby\__init__.py", line 1, in <module>
from pandas.core.groupby.generic import DataFrameGroupBy, NamedAgg, SeriesGroupBy
File "C:\Users\VALENTINA\AppData\Local\Programs\Python\Python38-32\lib\site-packages\pandas\core\groupby\generic.py", line 60, in <module>
from pandas.core.frame import DataFrame
File "C:\Users\VALENTINA\AppData\Local\Programs\Python\Python38-32\lib\site-packages\pandas\core\frame.py", line 124, in <module>
from pandas.core.series import Series
File "C:\Users\VALENTINA\AppData\Local\Programs\Python\Python38-32\lib\site-packages\pandas\core\series.py", line 4572, in <module>
Series._add_series_or_dataframe_operations()
File "C:\Users\VALENTINA\AppData\Local\Programs\Python\Python38-32\lib\site-packages\pandas\core\generic.py", line 10349, in _add_series_or_dataframe_operations
from pandas.core.window import EWM, Expanding, Rolling, Window
File "C:\Users\VALENTINA\AppData\Local\Programs\Python\Python38-32\lib\site-packages\pandas\core\window\__init__.py", line 1, in <module>
from pandas.core.window.ewm import EWM # noqa:F401
File "C:\Users\VALENTINA\AppData\Local\Programs\Python\Python38-32\lib\site-packages\pandas\core\window\ewm.py", line 5, in <module>
import pandas._libs.window.aggregations as window_aggregations
ImportError: DLL load failed while importing aggregations: The specified module could not be found.
Visual CodeとIDLEでスクリプトを実行すると、このエラーメッセージが表示されます。
誰かが私を助けてくれるなら私は感謝します
Thnks
パンダのインポートで受け取った2つのエラーメッセージがあります。1つはOPにあり、もう1つは
AttributeError: module 'pandas' has no attribute 'plotting'
パッケージ/ライブラリを再インストールすることで問題を軽減することができました
pip uninstall pandas
pip install pandas==1.0.1
別のユーザーが私の前で指摘したように。 Python 3.8.2をpandas 1.0.1と組み合わせて使用しています。
単にアンインストールpandasおよび再インストールpandas to 1.0.1
例えば:
pipアンインストールパンダ
pip install pandas == 1.0.1