外部モジュールをimportすると、「Unable to import 'module-name' pylint(import error)」と表示される
pythonでのコーディング中、標準モジュールはimportされるのに、pipで追加したモジュールはimport errorが発生する事象が発生しました。
pipで確認してもインストールされていて、コード自体も正常に実行できます。
環境
- python 3.6.4(pyenv使用)
- VS Code
原因
いろいろ調べてみたら、VSCodeの.vscode/setting.json
で設定されているpythonと、pyenvのpythonが違っていたために起こったエラーのようでした。
vscode/setting.json
{
"python.pythonPath": "/usr/local/bin/python3"
}
$ which python
/Users/dynamonda/.pyenv/shims/python
対処法
.vscode/setting.json
のpythonPath
をpyenvのものに変更します。
vscode/setting.json
{
// "python.pythonPath": "/usr/local/bin/python3"
"python.pythonPath": "/Users/dynamonda/.pyenv/shims/python"
}
これでimport errorが発生しなくなりました。
Author And Source
この問題について(外部モジュールをimportすると、「Unable to import 'module-name' pylint(import error)」と表示される), 我々は、より多くの情報をここで見つけました https://qiita.com/dynamonda/items/5a8129cd6e9cc139d94a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .