i am learning flask from a course in udemy, i followed the steps by changing:
the error code is:
Program 'flask.exe' failed to run: Access is denied
At line:1 char:1
flask run
CategoryInfo : ResourceUnavailable: (:) [], ApplicationFailedException
FullyQualifiedErrorId : NativeCommandFailed
For some reason, the flask.exe
shim created when installing flask
is access-denied for you.
python -m flask
does the same thing (in this case!), so you can use that as a substitute.