前提・実現したいこと
これまで使ってきたIDLEから、VSCodeへの移行を考えています。
その際に、pandasを利用したいのですが、エラーメッセージが表示されてしまい、先に進めることができません。
やり方等ご教授お願いします。
発生している問題・エラーメッセージ
UserWarning: mkl-service package failed to import, therefore Intel(R) MKL initialization ensuring its correct out-of-the box operation under condition when Gnu OpenMP had already been loaded by Python process is not assured. Please install mkl-service package, see http://github.com/IntelPython/mkl-service from . import _distributor_init Traceback (most recent call last): File "c:/Users/twtjm/OneDrive/デスクトップ/勉強用/app.py", line 2, in <module> import pandas as pd File "C:\Users\twtjm\anaconda3\lib\site-packages\pandas\__init__.py", line 16, in <module> raise ImportError( ImportError: Unable to import required dependencies: numpy: IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE! Importing the numpy C-extensions failed. This error can happen for many reasons, often due to issues with your setup or how NumPy was installed. We have compiled some common reasons and troubleshooting tips at: https://numpy.org/devdocs/user/troubleshooting-importerror.html Please note and check the following: * The Python version is: Python3.8 from "C:\Users\twtjm\anaconda3\python.exe" * The NumPy version is: "1.18.5" and make sure that they are the versions you expect. Please carefully study the documentation linked above for further help. Original error was: DLL load failed while importing _multiarray_umath: 指定されたモジュールが見つかりません。
該当のソースコード
import pandas as pd pd.DataFrame(...)
試したこと
おそらくパスが通っていないことが原因だとは思いますが、どのようにパスを通せばよいのかわかりません。
補足情報(FW/ツールのバージョンなど)
・Windows10 64bit
・Anaconda
・VSCode上では、Python 3.8.3 64-bit (conda)と書いてあります。
これでパスが通っていると思ったのですが、どうやら違うようでした。
回答1件
あなたの回答
tips
プレビュー