From 657edfeb9a4e5c10a19e53e9d165e6c3e6585d57 Mon Sep 17 00:00:00 2001 From: Akash Jain <15995028+akash-jain-10@users.noreply.github.com> Date: Mon, 24 Jan 2022 12:21:35 +0530 Subject: [PATCH] use venv instead (#2370) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e1dcfb048a3..c8d9b3c02ea 100644 --- a/Makefile +++ b/Makefile @@ -116,10 +116,10 @@ yarn_start_dev_ui: ## Run the UI locally with Yarn ## Ingestion Core .PHONY: core_install_dev -core_install_dev: ## Prepare a virtualenv for the ingestion-core module +core_install_dev: ## Prepare a venv for the ingestion-core module cd ingestion-core; \ rm -rf venv; \ - python -m virtualenv venv; \ + python -m venv venv; \ . venv/bin/activate; \ python -m pip install ".[dev]"