You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pandabi-backend | startup.sh: line 2: $'\r': command not found
pandabi-backend | startup.sh: line 3: $'\r': command not found
pandabi-backend | startup.sh: line 26: syntax error: unexpected end of file
operating system: Windows 11
How i resolve it
1- open the startup.sh file in VS code.
2- click on the CRLF option displays in the bottom bar of the VS code.
3- after clickng it a pop-up appears, select LF from their.
The text was updated successfully, but these errors were encountered:
Hello @Muhammad-Adam1! I'm here to help you with bug fixes, answer questions, and guide you toward becoming a contributor. Let's tackle this together!
To resolve the error caused by Windows-style line endings (CRLF) in the startup.sh script when running docker-compose up on Windows 11, you can also convert the line endings to Unix-style (LF) using the dos2unix command. The Dockerfile in the pandas-ai project already contains a commented-out line for this purpose. You should uncomment the line RUN dos2unix /startup.sh to ensure the line endings are converted during the build process [1].
I followed each step of this tutorial Getting started with the Platform
After running the command:
docker-compose up
I got an error
Error Encountered
operating system: Windows 11
How i resolve it
1- open the startup.sh file in VS code.
2- click on the CRLF option displays in the bottom bar of the VS code.
3- after clickng it a pop-up appears, select LF from their.
The text was updated successfully, but these errors were encountered: