0
0

More than 1 year has passed since last update.

[Python]サーバーレスアプリ開発入門でハマったところ

Last updated at Posted at 2022-12-30

pipenv環境でのModuleNotFoundError

動かして学ぶ! Pythonサーバレスアプリ開発入門を試して、

ModuleNotFoundError
何度もModuleNotFoundErrorが出てきてハマった。 

pipenv install 'モジュール名'

pipenv install 'モジュール名'

で何度もモジュールをインストールするが、ModuleNotFoundErrorが出て一向に実行できない。

pip info

を実行すると確かにモジュールがインストールされていないことがわかる。

仕方ないので、

python -m pip install 'モジュール名'

でインストールすることで解決しました。

基本、以下は確認しながら進めないと、いろいろ厳しい
「動かして学ぶ!Pythonサーバレスアプリ開発入門」 サンプルコード

0
0
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
0
0