path

tried to install wasp but gets this error "WARNING: It looks like '/Users/xxx/.local/bin is not on your PATH! You will not be able to invoke wasp from the terminal by its name. You can add it to your PATH by adding following line into your profile file (~/.profile or ~/.zshrc or ~/.bash_profile or ~/.bashrc export PATH=$PATH:/Users/xxx/.local/bin I can't seem to find a way around this
4 Replies
miho
miho8mo ago
Which OS are you using?
angrychmst
angrychmst8mo ago
Ubuntu running on windows 10
miho
miho8mo ago
The error message says:
You can add it to your PATH by adding following line into your profile file (~/.profile or ~/.zshrc or ~/.bash_profile or ~/.bashrc
export PATH=$PATH:/Users/xxx/.local/bin
You can add it to your PATH by adding following line into your profile file (~/.profile or ~/.zshrc or ~/.bash_profile or ~/.bashrc
export PATH=$PATH:/Users/xxx/.local/bin
which means you need to add the line export PATH=$PATH:/Users/xxx/.local/bin to your ~/.bashrc if you are using Bash on Ubuntu. Here's a video explain it: https://www.youtube.com/watch?v=83RNosGS8fg
angrychmst
angrychmst8mo ago
Thank you solved