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
So if you are using Linux and having a problem installing... These extra steps that helped me that are not in the install instructions.
After cloning and entering the fabric directory install poetry with the following
curl -sSL https://install.python-poetry.org | python3 -
Then check it is installed in your path with
poetry --version
if you get "bash: poetry: command not found"
You need to export a path
export PATH="/home/user/.local/bin:$PATH" replacing "user@ with the user account you are installing under.
Then retry poetry --version
and you should now get the response "Poetry (version 1.8.3)"
Then run "sudo apt install pipx"
after that finishes run
"pipx install ." (dont forget the . at the end)
You can the run "fabric --setup" and it will let you configure fabric and rock.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
So if you are using Linux and having a problem installing... These extra steps that helped me that are not in the install instructions.
After cloning and entering the fabric directory install poetry with the following
curl -sSL https://install.python-poetry.org | python3 -
Then check it is installed in your path with
poetry --version
if you get "bash: poetry: command not found"
You need to export a path
export PATH="/home/user/.local/bin:$PATH" replacing "user@ with the user account you are installing under.
Then retry poetry --version
and you should now get the response "Poetry (version 1.8.3)"
Then run "sudo apt install pipx"
after that finishes run
"pipx install ." (dont forget the . at the end)
You can the run "fabric --setup" and it will let you configure fabric and rock.
Beta Was this translation helpful? Give feedback.
All reactions