Skip to content

Commit e5641a2

Browse files
committed
install pip, requests and fc-cache
1 parent 3510438 commit e5641a2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.circleci/env_image.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,20 @@
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
11+
sudo python3 -m pip install requests
512
sudo python3 .circleci/download_google_fonts.py
613
sudo cp -r .circleci/fonts/ /usr/share/
14+
sudo apt install fontconfig
715
sudo fc-cache -f
16+
817
# install kaleido & plotly
918
sudo python3 -m pip install kaleido==0.2.1 plotly==5.5.0 --progress-bar off
19+
1020
# install numpy i.e. to convert arrays to typed arrays
1121
sudo python3 -m pip install numpy==1.24.2

0 commit comments

Comments
 (0)