Skip to content

Commit f400d87

Browse files
committed
call pip directly
1 parent 6139963 commit f400d87

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.circleci/env_image.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ sudo curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
88
sudo python3 get-pip.py
99

1010
# install additional fonts
11-
sudo python3 -m pip install requests
11+
pip install requests
1212
sudo python3 .circleci/download_google_fonts.py
1313
sudo cp -r .circleci/fonts/ /usr/share/
1414
sudo apt install fontconfig
1515
sudo fc-cache -f
1616

1717
# install kaleido & plotly
18-
sudo python3 -m pip install kaleido==0.2.1 plotly==6.2.0 --progress-bar off
18+
pip install kaleido==0.2.1 plotly==6.2.0 --progress-bar off
1919

2020
# install numpy i.e. to convert arrays to typed arrays
21-
sudo python3 -m pip install numpy==1.24.2
21+
pip install numpy==1.24.2

0 commit comments

Comments
 (0)