From 8f489571d2f279b70e812417c94d214fb7d166d5 Mon Sep 17 00:00:00 2001 From: Sergey Date: Thu, 5 Dec 2024 15:22:09 -0700 Subject: [PATCH] update Makefile --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index a127226..2478b18 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,11 @@ SHELL=/bin/bash +PYTHON = python +PIP = $(VENV_DIR)/bin/pip + +.venv: + $(PYTHON) -m venv $(VENV_DIR) + $(PIP) install -U pip setuptools wheel + $(PIP) install maturin install: unset CONDA_PREFIX && \