104
58

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

外部モジュールをimportすると、「Unable to import 'module-name' pylint(import error)」と表示される

Posted at

pythonでのコーディング中、標準モジュールはimportされるのに、pipで追加したモジュールはimport errorが発生する事象が発生しました。

pipで確認してもインストールされていて、コード自体も正常に実行できます。

スクリーンショット 2019-02-22 13.51.42.png

環境

  • 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.jsonpythonPathをpyenvのものに変更します。

.vscode/setting.json
{
    // "python.pythonPath": "/usr/local/bin/python3"
    "python.pythonPath": "/Users/dynamonda/.pyenv/shims/python"
}

これでimport errorが発生しなくなりました。

104
58
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
104
58

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?