Reputation: 3
I used python -m venv Flask
but it always returns an error:
/storage/emulated/0 $ python -m venv Flask Error: [Errno 13] Permission denied: 'lib' -> '/storage/emulated/0/Flask/lib64' /storage/emulated/0$
Upvotes: 0
Views: 41
Reputation: 16
/storage/emulated/0
is a restricted directory, so you can't run the command there. Try running it in the location where you want to put the project.
Upvotes: 0