Skip to content

Commit acff615

Browse files
committed
install pip
1 parent 15be543 commit acff615

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.circleci/env_image.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +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+
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
511
sudo python3 -m pip install requests
612
sudo python3 .circleci/download_google_fonts.py
713
sudo cp -r .circleci/fonts/ /usr/share/
814
sudo fc-cache -f
15+
916
# install kaleido & plotly
1017
sudo python3 -m pip install kaleido==0.2.1 plotly==5.5.0 --progress-bar off
18+
1119
# install numpy i.e. to convert arrays to typed arrays
1220
sudo python3 -m pip install numpy==1.24.2

0 commit comments

Comments
 (0)