1
2

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 1 year has passed since last update.

Virtualenvでの初歩的なミス

Last updated at Posted at 2021-04-05

#エラー

from flask import Flask, render_template

app = Flask(__name__)
@app.route('/')
def index():
    return render_template('index.html')

if __name__ == '__main__':
    app.run(debug=True)

仮想環境を有効化して index.html を表示するコードを実行したところ

Traceback (most recent call last):
  File "app.py", line 1, in <module>
    from flask import Flask, render_template
ModuleNotFoundError: No module named 'flask'

上記のエラーが発生
pip listでインストール済みライブラリーの中にFlaskはあるのにエラーが出た。

#解決

pip install Flask

仮想環境を有効化した後でライブラリーのインストールをもう一度しなければならなかったらしい...

#追記
仮想環境はライブラリー同士の干渉を解決するために使われるもので、使用するライブラリーをインストールするのは当たり前のことだった。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?