from flask import Flask, jsonify, request ModuleNotFoundError: No module named 'flask'

The situation in the morning is that python blockchain.py can be started normally, and the following error is reported when pipenv run python blockchain.py is executed
write picture description here

Query the package installed in pipenv and find that there is really no flask
. pipenv introduces the flask package: pipenv install flask

write picture description here

Related Posts