From c920cf5c229231a0232cf9debad2445ac10a16d1 Mon Sep 17 00:00:00 2001 From: Jitendra Gundaniya Date: Sat, 23 Mar 2024 13:39:43 +0000 Subject: [PATCH] conda init --- .github/actions/win_setup_python_env/action.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/actions/win_setup_python_env/action.yml b/.github/actions/win_setup_python_env/action.yml index f3cedbb5eb..844d3ef670 100644 --- a/.github/actions/win_setup_python_env/action.yml +++ b/.github/actions/win_setup_python_env/action.yml @@ -12,15 +12,12 @@ runs: with: auto-update-conda: true python-version: ${{ inputs.python_version }} - # - name: Install and initialize Miniconda - # run: |- - # choco install miniconda3 -y - # refreshenv - # C:\tools\miniconda3\Scripts\conda init powershell - # shell: pwsh + - name: Explicitly initialize conda + run: conda init bash + shell: bash - name: Create 'kedro-viz' conda environment run: conda create --name kedro-viz python=${{ inputs.python_version }} -y - shell: bash -l {0} + shell: bash - name: Install Kedro-Viz dependencies run: |- conda activate kedro-viz