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
Which OS are you using?
Ubuntu running on windows 10
The error message says:
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=83RNosGS8fgThank you solved