mirror of https://github.com/apache/druid.git
Fix pip installation after ubuntu upgrade (#17358)
This commit is contained in:
parent
c57bd3b438
commit
f80e2c229e
|
@ -18,6 +18,9 @@
|
|||
set -e
|
||||
|
||||
sudo apt-get update && sudo apt-get install python3 -y
|
||||
curl https://bootstrap.pypa.io/pip/3.5/get-pip.py | sudo -H python3
|
||||
# creating python virtual env
|
||||
python3 -m venv ~/.python3venv
|
||||
source ~/.python3venv/bin/activate
|
||||
sudo apt install python3-pip
|
||||
pip3 install wheel # install wheel first explicitly
|
||||
pip3 install --upgrade pyyaml
|
||||
|
|
Loading…
Reference in New Issue