インストールしたパッケージが VS Code エディターで、importエラーになってしまう。
Import "hello" could not be resolved Pylance reportMissingImports
Pylanceの設定にパッケージフォルダーを追加する
[ファイル]→[ユーザー設定]→[設定 (Ctrl+,)]を開き
python.analysis.extraPaths
にパッケージのフォルダーパスを追加する
{
"python.analysis.extraPaths": [
"C:\\Python310\\lib\\site-packages\\"
]
}
参考:https://github.com/microsoft/pylance-release/blob/main/README.md#settings-and-customization
パッケージフォルダーを確認する
- ターミナルで、Pythonを実行
python
- パッケージをインポート
>>> import hello
- ファイルを確認
>>> print(hello.__file__)
結果
C:\Python310\lib\site-packages\hello\__init__.py