Installation Process - Issue With './setup.sh' Step #142
-
I will preempt this with I am still fairly new to Linux, Python, and GitHub, but I love this project and want to add it to my learnings. I am reaching an issue at the step where you use the './setup.sh' command. Note I am using Bash on an Ubuntu VM. Here is the output: Could someone help me understand the error, and how to resolve it, so I can get Fabric working on my system? Thank you in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 6 replies
-
I'm having the same problem on Debian. Any help would be appreciated. |
Beta Was this translation helpful? Give feedback.
-
Hello, When I instead used the curl command I got the latest, 1.8.1, which supports the "group" parameter.
You also have to include the
in your ~/.bashrc and then restart your terminal or run "source ~/.bashrc". Also note that because of the poetry being an old version, now your ~/.bashrc has bad lines at the end, from the error outputs from the setupscript, so make sure to delete them as well. As a finishing touch, to avoid conflicts, I also deleted the system wide install of poetry, i.e.
Hope this helps! |
Beta Was this translation helpful? Give feedback.
-
I'm having similar problems installing on Ubuntu 24.04.04 LTS. I just keep getting different versions of the above image. been going around in circles... any help would be appreciated. Thanks in advance! |
Beta Was this translation helpful? Give feedback.
-
I had the same issue on a mac, pretty much what the problem was for me was that the setup.sh was in another directory. cd to that directory and then running the command was all it took. Also I asked chatgpt to troubleshoot which was quite helpful. |
Beta Was this translation helpful? Give feedback.
Hello,
I had this error when using poetry that is included in my repository, i.e I had the version 1.1.12 from using "sudo apt install python3-poetry".
When I instead used the curl command I got the latest, 1.8.1, which supports the "group" parameter.
curl -sSL https://install.python-poetry.org | python3 -
You also have to include the
export PATH="/home/yourusername/.local/bin:$PATH"
in your ~/.bashrc and then restart your terminal or run "source ~/.bashrc".
Also note that because of the poetry being an old version, now your ~/.bashrc has bad lines at the end, from the error outputs from the setupscript, so make sure to delete them as well.
As a finishing touch, to avoid conflicts, I als…