bash: deletefb: command not found #41
Closed
by mikeyyyzhao opened 6 years ago
·
4 comments
Loading…
Reference in new issue
There is no content yet.
Delete Branch '%!s(MISSING)'
Deleting a branch is permanent. It CANNOT be undone. Continue?
I ran the instructions but for some reason when I tried running the script "deletefb -E ...", it gave me a "bash: deletefb: command not found" error. Here's the code I ran:
Check your
$PATH
variable. Your shell might not be set up to discover scripts installed by pip. E.g. on my system it gets put under~/.local/bin/deletefb
In case anyone else could not find it in
~/.local/bin/deletefb
, on my system it was installed in/Users/<USERNAME>/Library/Python/2.7/bin
.mine was installed in
/Users/<USERNAME>/Library/Python/2.7/bin
but how do you get it working? i tried copying the deletefb script fiel to~/.local/bin/deletefb
but that returnsI ended up cloning the repo and running
python3 .
in the directory where the__main__.py
file is located. I got some error messages regarding imports. Not sure which ones exactly anymore though. They were related to imports and quite easy to resolve however.