jptn_games
jptn_games

Reputation: 3

How do I create a virtual environment in Pydroid without getting "permission denied"?

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

Answers (1)

VulpineFriend 87
VulpineFriend 87

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

Related Questions