gil : command not found
after installing gil by :
pip3 install gil
when i want to run this command :
gil update
the terminal responses :
Command 'gil' not found
OS : ubuntu 20.04 LTS
Same here for OS: Ubuntu 18.04 LTS
Same for Ubuntu 20.04
a bad suggestion:
# get Source code
# tar -xvpzf gil*
# cd gil*
sudo python setup.py install
@e71828's suggestion works. @chronoxor how would you go about making the recommended fix for this (in case somebody wants to make a PR)?
There are two possible solutions for the issue:
- Preferred, but requires sudo:
sudo pip3 install --prefix /usr/local gil - User only modifications. Might require terminal restart to get updated PATH env:
echo 'PATH="$HOME/.local/bin/:$PATH"' >> ~/.bashrc
pip3 install gil
Both ways are acceptable, although I like the second way better. @chronoxor - I made a pull request for it (#5). Please feel free to close this issue, regardless of the PR! Thanks.