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 6139963 commit f400d87Copy full SHA for f400d87
.circleci/env_image.sh
@@ -8,14 +8,14 @@ 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
+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==6.2.0 --progress-bar off
+pip install kaleido==0.2.1 plotly==6.2.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
+pip install numpy==1.24.2
0 commit comments