diff options
author | Yang Li <netcrop@users.noreply.github.com> | 2019-10-19 08:22:54 +0800 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2019-11-04 17:23:44 +0900 |
commit | a595a1b67573a2ce6a27c4e1731a168ac40ca24b (patch) | |
tree | 1af3e15d696fcb4feb83ea96d24dc603cd4fe974 /util/linux_install.sh | |
parent | d0ee924c9d1689845ca067ca1175521824870ba7 (diff) |
Add python-pip as package dependency for archlinux (#7041)
Diffstat (limited to 'util/linux_install.sh')
-rwxr-xr-x | util/linux_install.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/linux_install.sh b/util/linux_install.sh index 86aa62a4e1..64dc6d5fa1 100755 --- a/util/linux_install.sh +++ b/util/linux_install.sh @@ -76,6 +76,7 @@ elif grep ID /etc/os-release | grep -q 'arch\|manjaro'; then gcc \ git \ python \ + python-pip \ unzip \ wget \ zip @@ -212,4 +213,4 @@ else fi # Global install tasks -pip3 install -r ${util_dir}/../requirements.txt +pip3 install --user -r ${util_dir}/../requirements.txt |