diff options
author | Yang Li <netcrop@users.noreply.github.com> | 2019-10-19 08:22:54 +0800 |
---|---|---|
committer | Drashna Jael're <drashna@live.com> | 2019-12-05 16:03:52 -0800 |
commit | f832395063693004aa4942bb0286b9a91831cc79 (patch) | |
tree | 1af3e15d696fcb4feb83ea96d24dc603cd4fe974 | |
parent | 4af7cbcc719e6fa7aef0991d87e372a280c430d4 (diff) |
Add python-pip as package dependency for archlinux (#7041)
-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 |