Skip to content

Commit 3d9c662

Browse files
committed
Fix make install
Signed-off-by: hemildesai <[email protected]>
1 parent 6af24dd commit 3d9c662

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ build: verify-dev-env venv
1616
.PHONY: install
1717
install: build
1818
ifeq ($(OS),Linux)
19-
pip install python/dist/replicate-*-py3-none-manylinux1_x86_64.whl
19+
$(VENV)pip install python/dist/replicate-*-py3-none-manylinux1_x86_64.whl
2020
else ifeq ($(OS),Darwin)
21-
pip install python/dist/replicate-*-py3-none-macosx_*.whl
21+
$(VENV)pip install python/dist/replicate-*-py3-none-macosx_*.whl
2222
else
2323
@echo Unknown OS: $(OS)
2424
endif

0 commit comments

Comments
 (0)