mirror of
https://github.com/geohot/qira
synced 2025-03-13 10:33:30 +03:00
Try to use pip2
instead of pip
This commit is contained in:
parent
ac26ea54a7
commit
416db4a9b2
@ -1,7 +1,11 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
# default is just pip, but on things like arch where python 3 is default, it's pip2
|
||||
PIP="pip"
|
||||
if [ $(which pip2) ]; then
|
||||
PIP="pip2"
|
||||
else
|
||||
PIP="pip"
|
||||
fi
|
||||
|
||||
unamestr=$(uname)
|
||||
if [[ "$unamestr" == 'Linux' ]]; then
|
||||
|
Loading…
x
Reference in New Issue
Block a user