Skip to content

Commit b7c346e

Browse files
committed
install pip
1 parent a598ce1 commit b7c346e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.circleci/env_image.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,19 @@
22
set -e
33
# install required fonts
44
sudo apt-get install fonts-liberation2 fonts-open-sans fonts-noto-cjk fonts-noto-color-emoji
5-
sudo python3 -m ensurepip --upgrade
5+
6+
# install pip
7+
sudo curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
8+
sudo python3 get-pip.py
9+
10+
# install additional fonts
611
sudo python3 -m pip install requests
712
sudo python3 .circleci/download_google_fonts.py
813
sudo cp -r .circleci/fonts/ /usr/share/
914
sudo fc-cache -f
15+
1016
# install kaleido & plotly
1117
sudo python3 -m pip install kaleido==0.2.1 plotly==5.5.0 --progress-bar off
18+
1219
# install numpy i.e. to convert arrays to typed arrays
1320
sudo python3 -m pip install numpy==1.24.2

0 commit comments

Comments
 (0)