topisani / Discurses

A Python discord CLI focused on usability
MIT License
140 stars 14 forks source link

Cant launch discurses after installing from pip Ubuntu ARM #34

Closed ghost closed 6 years ago

ghost commented 6 years ago

Title pretty much describes it. Ive installed it in an chrooted ubuntu. Cant launch it from terminal, command doesent exist ~/.config> python3 -m discurses /usr/bin/python3: No module named discurses.__main__; 'discurses' is a package and cannot be directly executed

topisani commented 6 years ago

I just execute it as discurses, did you try that?

snixon commented 6 years ago

If you installed via pip as your user, it probably created a directory in $HOME/.local/bin/ and dropped the file there.

Try this to get it into your path. export PATH=$PATH:$HOME/.local/bin

if discurses shows up, now you have your answer, edit your conf in either $HOME/.profile or $HOME/.bashrc to add the $HOME/.local/bin to your users path.