Skip to content

Commit 028b929

Browse files
committed
Fix tupan pip failure
1 parent 5fd5788 commit 028b929

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/amuse_tupan/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ install_tupan: | src/tupan
3131
ifneq ($(CONDA_PREFIX),)
3232
conda install --yes cffi setuptools numpy scipy matplotlib
3333
else ifneq ($(VIRTUAL_ENV),)
34-
pip install cffi setuptools numpy scipy matplotlib
34+
python3 -m pip install cffi setuptools numpy scipy matplotlib
3535
endif
36-
cd src/tupan && pip install .
36+
cd src/tupan && python3 -m pip install .
3737

3838

3939
# Building the workers
@@ -48,11 +48,11 @@ amuse-tupan_contains: tupan_worker
4848
# Building and installing packages
4949
develop-%: %_contains install_tupan
5050
support/shared/uninstall.sh $*
51-
python -m pip install -e packages/$*
51+
python3 -m pip install -e packages/$*
5252

5353
install-%: %_contains install_tupan
5454
support/shared/uninstall.sh $*
55-
python -m pip install packages/$*
55+
python3 -m pip install packages/$*
5656

5757
package-%: %_contains
5858
python3 -m pip install -vv --no-cache-dir --no-deps --no-build-isolation --prefix ${PREFIX} packages/$*

0 commit comments

Comments
 (0)