Skip to content

Commit

Permalink
Fix attempt for conda environment problems
Browse files Browse the repository at this point in the history
  • Loading branch information
f-PLT committed May 17, 2024
1 parent 22decf2 commit f4a6f1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .make/base.make
Original file line number Diff line number Diff line change
Expand Up @@ -111,15 +111,15 @@ conda-install: ## Install Conda on your local machine

.PHONY: conda-create-env
conda-create-env: conda-install ## Create a local Conda environment based on `environment.yml` file
@$(CONDA_TOOL) env create -y -f environment.yml
@$(CONDA_TOOL) env create -f environment.yml

.PHONY: conda-env-info
conda-env-info: ## Print information about active Conda environment using <CONDA_TOOL>
@$(CONDA_TOOL) info

.PHONY: _conda-poetry-install
_conda-poetry-install:
$(CONDA_TOOL) run -n $(CONDA_ENVIRONMENT) $(CONDA_TOOL) install -y poetry==$(POETRY_VERSION); \
$(CONDA_TOOL) run -n $(CONDA_ENVIRONMENT) $(CONDA_TOOL) install -c conda-forge poetry==$(POETRY_VERSION); \



Expand Down

0 comments on commit f4a6f1d

Please sign in to comment.