Skip to content

Commit e02643b

Browse files
Use python-m pip in justfile
Fixes problems when the wrong `pip` (i.e. not the one matching your `python`) is first in the path.
1 parent 08991d4 commit e02643b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set shell := ['bash', '-ceuo', 'pipefail']
1919
cd cpp/build && cmake --build .
2020

2121
@build-python: generate
22-
pip install --editable ./python
22+
python -m pip install --editable ./python
2323

2424
@build: build-cpp build-python
2525

0 commit comments

Comments
 (0)