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
I was just wondering if site-packages is the best default location for poetry and I presented an example on how sometimes poetry is not installed by default in a location included by PATH. Usually the decision is to install it in /usr/bin or /usr/local/bin.
The text was updated successfully, but these errors were encountered:
After
poetry
installation,poetry
is not a recognized command.I am running python 3.11 on macOS. I inspected the installation code and I see the following function:
It seems like
site.getuserbase()
resolves to~/Library/Python/3.11
. That is not part of myPATH
and therefore I getpoetry: command not found
.Since I am configuring
poetry
withgithub-actions
, I ended up doing the following:I was just wondering if
site-packages
is the best default location forpoetry
and I presented an example on how sometimespoetry
is not installed by default in a location included byPATH
. Usually the decision is to install it in/usr/bin
or/usr/local/bin
.The text was updated successfully, but these errors were encountered: