It has a deploy.sh script, in which there is a line that should put packages locally in a virtual environment:
echo -e "\nInstalling requirements..." sh -c "pip install -r requirements.txt" The script is started by the sudo ./deploy.sh , therefore, the dependency installation command is executed as
sudo pip install -r requirements.txt and packages are installed globally, not locally for the current project.
How to make the command run without sudo ?
Refinement - the script contains commands that require superuser rights