2
1

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.

No module named 'apiclient' エラー(YouTube Data API(v3))

Posted at

YouTubeAPIを使ってプログラムを実行する時に躓いたので、今後自分と同じ人がいた場合のためのメモです。

#環境
エディター VScode
VScodeで選択されていたバージョン python 3.7.3
パスが通っているバージョン python 3.7.4
Youtube Data API(v3)を使うためにインストールしたもの

#エラー文
ModuleNotFoundError: No module named 'apiclient'
#原因
自分は複数のバージョンのPythonを入れていたためVScodeで選択されていたバージョンはパスが通っておらず実行しても選択されているバージョンには入っていないため、実行すると'apiclient'エラーがでた。

#解決方法
ターミナルでwhich pythonと入力するとパスが通っているPythonバージョンが表示されるのでそれにVScodeで変更してください。そうするとエラーが消えました。

###VScode バージョン変更方法

  1. エディターの左下に下の画像の用の部分があると思うのでクリックして ください。
    image.png

  2. そうすると、バージョンが選択できるバーが出てくると思うのでそこからパスが通っているバージョンを選択してください。

2
1
0

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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?