Skip to content

Commit

Permalink
chore: remove python in commond line
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-code committed Apr 8, 2023
1 parent 2f76334 commit 2f7a19a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion {{ cookiecutter.repo_name }}/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ create_environment:
{% if cookiecutter.dependency_file != 'environment.yml' %}
conda create --name $(PROJECT_NAME) python=$(PYTHON_VERSION) -y
{% else -%}
conda env create --name $(PROJECT_NAME) python=$(PYTHON_VERSION) -f environment.yml
conda env create --name $(PROJECT_NAME) -f environment.yml
{% endif %}
@echo ">>> conda env created. Activate with:\nconda activate $(PROJECT_NAME)"
{% elif cookiecutter.environment_manager == 'virtualenv' -%}
Expand Down

0 comments on commit 2f7a19a

Please sign in to comment.