I just started a new python project and created a venv inside the project folder by running virtualenv venv
in the terminal. However, when I run venv/bin/acti
Basically, it's looking for permission to execute activate on the created folder path.
On the root give below permissions command on the desired path where activate is located
sudo chmod -R 755 ~/tensorflow/* # or whatever the target structure
This will extend all the permissions including Read/Write/Execute and group
then execute ~/bin/activate