@@ -16,13 +16,13 @@ jobs:
16
16
# Python 3 installation tasks
17
17
- run :
18
18
name : Install pkg_utils (Python 3)
19
- command : pip3 install -U git+https://github.com/KarrLab/pkg_utils.git#egg=pkg_utils
19
+ command : python3 -m pip install -U git+https://github.com/KarrLab/pkg_utils.git#egg=pkg_utils
20
20
- run :
21
21
name : Install karr_lab_build_utils (Python 3)
22
22
command : |
23
- pip3 install -U git+https://github.com/KarrLab/sphinxcontrib-googleanalytics.git#egg=sphinxcontrib_googleanalytics
24
- pip3 install -U git+https://github.com/KarrLab/wc_utils.git#egg=wc_utils[all]
25
- pip3 install -U git+https://github.com/KarrLab/karr_lab_build_utils.git#egg=karr_lab_build_utils[all]
23
+ python3 -m pip install -U git+https://github.com/KarrLab/sphinxcontrib-googleanalytics.git#egg=sphinxcontrib_googleanalytics
24
+ python3 -m pip install -U git+https://github.com/KarrLab/wc_utils.git#egg=wc_utils[all]
25
+ python3 -m pip install -U git+https://github.com/KarrLab/karr_lab_build_utils.git#egg=karr_lab_build_utils[all]
26
26
- run :
27
27
name : Install package configuration files including credentials
28
28
command : karr_lab_build_utils3 download-install-package-config-files
@@ -32,13 +32,13 @@ jobs:
32
32
if [[ -f .circleci/requirements.txt ]]; then
33
33
while IFS="" read -r line || [ -n "$line" ]; do
34
34
if [[ ! -z "$line" ]] && [[ ! "$line" =~ ^# ]]; then
35
- pip3 install -U "$line"
35
+ python3 -m pip install -U "$line"
36
36
fi
37
37
done < .circleci/requirements.txt
38
38
fi
39
39
- run :
40
40
name : Install package (Python 3)
41
- command : pip3 install -U -e .[all]
41
+ command : python3 -m pip install -U -e .[all]
42
42
43
43
# Save packages to cache
44
44
- save_cache :
0 commit comments