We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3510438 commit e5641a2Copy full SHA for e5641a2
.circleci/env_image.sh
@@ -2,10 +2,20 @@
2
set -e
3
# install required fonts
4
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
12
sudo python3 .circleci/download_google_fonts.py
13
sudo cp -r .circleci/fonts/ /usr/share/
14
+sudo apt install fontconfig
15
sudo fc-cache -f
16
17
# install kaleido & plotly
18
sudo python3 -m pip install kaleido==0.2.1 plotly==5.5.0 --progress-bar off
19
20
# install numpy i.e. to convert arrays to typed arrays
21
sudo python3 -m pip install numpy==1.24.2
0 commit comments