RasaGPT
                                
                                 RasaGPT copied to clipboard
                                
                                    RasaGPT copied to clipboard
                            
                            
                            
                        when i try to install in linux machine i got this error
ERROR: Could not install packages due to an OSError: [Errno 13] Permission denied: '/opt/venv/lib/python3.10/site-packages/dotenv' Check the permissions.
I had the same problem, I set manually the id:gid of my user (id) on docker-compose.yaml on each container :
 user: 1000:1000
Use sudo chown -R uid:gid . to become owner of all actual folder and do a make install again.
Also, modify the rasa/actions/Dockerfile :
USER root
RUN pip install python-dotenv rasa-sdk requests
USER 1001
Perhaps, you can ignore the package in the DockFile, and then enter the docker to install
@resulraveendran did the uid:gid suggestion resolve your issue?
i will be working on instructions for linux vs macos and potentially add arch/os support in the Makefiles instead of just focusing on macos. please lmk
@paulpierre got this error
chmod: changing permissions of '/app/wait-for-it.sh': Operation not permitted
Hi @paulpierre, I got the same error when installing in Ubuntu. Could you please check it?
sudo docker-compose up --build 得不得行
I had the same problem, I set manually the id:gid of my user (
id) on docker-compose.yaml on each container :user: 1000:1000
Use
sudo chown -R uid:gid .to become owner of all actual folder and do amake installagain.Also, modify the
rasa/actions/Dockerfile:USER root RUN pip install python-dotenv rasa-sdk requests USER 1001
this work!
Above steps solved the initial errors but got stuck in this error please help
@paulpierre got this error chmod: changing permissions of '/app/wait-for-it.sh': Operation not permitted
same error = =!,Did you solve it?

