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 a598ce1 commit b7c346eCopy full SHA for b7c346e
.circleci/env_image.sh
@@ -2,12 +2,19 @@
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
-sudo python3 -m ensurepip --upgrade
+
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 fc-cache -f
15
16
# install kaleido & plotly
17
sudo python3 -m pip install kaleido==0.2.1 plotly==5.5.0 --progress-bar off
18
19
# install numpy i.e. to convert arrays to typed arrays
20
sudo python3 -m pip install numpy==1.24.2
0 commit comments