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 installed via:
python3 -m pip install gpt-engineer
(the default python is python2 on macOS, so I used python3)
neil@neils-MacBook-Pro ~ % pip3 show gpt-engineer|grep Location
Location: /Users/neil/Library/Python/3.9/lib/python/site-packages
I verified my path includes the site-packages of python 3.9:
export PATH=/Users/neil/Library/Python/3.9/lib/python/site-packages:$PATH
I restarted my terminal
Still, every time I get "zsh: command not found: gpte"
The text was updated successfully, but these errors were encountered:
laphlaw
added
bug
Something isn't working
triage
Interesting but stale issue. Will be close if inactive for 3 more days after label added.
labels
Oct 3, 2024
and then restarting your terminal, the PATH variable isn't retaining the Python path. When you use export directly in the terminal, it only applies to the current session. Once you restart or open a new terminal, the setting is lost, which is why you're encountering the issue.
To make the change permanent, you should add that export command to your .zshrc file. This way, the Python path will automatically be set every time you open a new terminal or restart it.
I installed via:
python3 -m pip install gpt-engineer
(the default python is python2 on macOS, so I used python3)
neil@neils-MacBook-Pro ~ % pip3 show gpt-engineer|grep Location
Location: /Users/neil/Library/Python/3.9/lib/python/site-packages
I verified my path includes the site-packages of python 3.9:
export PATH=/Users/neil/Library/Python/3.9/lib/python/site-packages:$PATH
I restarted my terminal
Still, every time I get "zsh: command not found: gpte"
The text was updated successfully, but these errors were encountered: