From 08406da52cfc5c96652d9c04603e1c871e09e051 Mon Sep 17 00:00:00 2001 From: astaric Date: Sun, 24 Sep 2017 22:40:33 +0200 Subject: [PATCH] installer: Add conda, append conda-forge channel --- scripts/windows/condainstall.bat | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/scripts/windows/condainstall.bat b/scripts/windows/condainstall.bat index 0e69c9e5236..407738bde75 100644 --- a/scripts/windows/condainstall.bat +++ b/scripts/windows/condainstall.bat @@ -23,6 +23,18 @@ if not exist "%PREFIX%\python.exe" ( "%CONDA%" install --yes --copy --quiet --prefix "%PREFIX%" "%CD%\%%f" ^ || exit /b !ERRORLEVEL! ) + + rem # `conda create` does not add a conda.bat script when used + rem # with a local package, we need to create it manually. + echo @echo off > "%PREFIX%\Scripts\conda.bat" + echo call "%CONDA%" %%* >> "%PREFIX%\Scripts\conda.bat" + + rem # Create .condarc file that includes conda-forge channel + rem # We need it so add-ons can be installed from conda-forge + echo Appending conda-forge channel + echo channels: > "%PREFIX%\.condarc" + echo - defaults >> "%PREFIX%\.condarc" + echo - conda-forge >> "%PREFIX%\.condarc" ) for %%f in ( *.tar.bz2 ) do (