Y
Hacker News
new
|
ask
|
show
|
jobs
by
fxfan
2725 days ago
Would you consider changing pip to pip3 in your command? Lead the way with good practice?
2 comments
j88439h84
2725 days ago
Pip3 is usually a sign that you're installing into your system python packages instead of a virtualenv. The usual best practice is to use a virtualenv.
link
wenc
2725 days ago
I'm not sure how that is good practice?
link
TheGrassyKnoll
2725 days ago
Its a Python3 script, shouldn't it use pip3 ?
I installed it with: $ sudo pip3 install litecli (seemed to work)
link
j88439h84
2725 days ago
Dont use sudo pip, it can break your system.
link
swsieber
2725 days ago
It's compatible with python2
link