use venv instead (#2370)

This commit is contained in:
Akash Jain 2022-01-24 12:21:35 +05:30 committed by GitHub
parent 8bb50d1a24
commit 657edfeb9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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]"