前提・実現したいこと
python歴1週間でいろいろ勉強しているところです。問題自体を把握できていないですが、ネットで調べたことはいろいろ試してみました。
やりたいことは「CSVファイルを参照したい」です。
ながながと申し分けないですが、ご教授のほどよろしくお願いします。
import pandas as pd をVScode上で実行すると以下のエラーとなる。
発生している問題・エラーメッセージ
PS C:\Users\ユーザ名\OneDrive\デスクトップ\pythonpractice1> conda activate koshilow
CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'.
If using 'conda activate' from a batch script, change your
invocation to 'CALL conda.bat activate'.
To initialize your shell, run
$ conda init <SHELL_NAME>
Currently supported shells are:
- bash
- cmd.exe
- tcsh
- xonsh
- zsh
- powershell
See 'conda init --help' for more information and options.
IMPORTANT: You may need to close and restart your shell after running 'conda init'.
PS C:\Users\ユーザ名\OneDrive\デスクトップ\pythonpractice1> & C:/Users/ユーザ名/anaconda3/envs/koshilow/python.exe c:/Users/ユーザ名/OneDrive/デスクトップ/pythonpractice1/pandas_practice.py
C:\Users\ユーザ名\anaconda3\envs\koshilow\lib\site-packages\numpy_init_.py:143: 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/ユーザ名/OneDrive/デスクトップ/pythonpractice1/pandas_practice.py", line 1, in <module>
import pandas as pd
File "C:\Users\ユーザ名\anaconda3\envs\koshilow\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\ユーザ名\anaconda3\envs\koshilow\python.exe"
- The NumPy version is: "1.20.3"
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: 指定されたモジュールが見つかりません。
該当のソースコード
試したこと
・PC上のanaconda3 python をアンイストール後 anaconda3 を再インストールした状態
・仮想環境作成
・Windows 環境変数 C:\Users\ユーザ名\anaconda3
・vscode python.pythonPath C:\Users\ユーザ名\anaconda3
・conda で pandas を仮想環境にインストール
・conda list で確認済み
・C:\Users\ユーザ名\anaconda3\Library\bin にあった以下のファイルを DLLsにコピペ
sqlite3.dll
sqlite3
libcrypto-1_1-x64.dll
libssl-1_1-x64.dll
・anaconda prompt上で仮想環境をactivate
・anaconda prompt上でimport pandas ad pd を実行すると、>>>となる
補足情報(FW/ツールのバージョンなど)
windows10
python3.8.8 anaconda3
エディター vscode
仮想環境 anaconda で作成 環境名 koshilow
anaconda python -V Python 3.8.8
conda info -e
conda environments:
base C:\Users\ユーザー名\anaconda3
koshilow * C:\Users\ユーザー名\anaconda3\envs\koshilow
あなたの回答
tips
プレビュー