Skip to content

Commit

Permalink
conda installer: put conda-forge channel on top
Browse files Browse the repository at this point in the history
Otherwise, orange tries to downgrade to the (outdated) version from
defaults.
  • Loading branch information
astaric committed Oct 20, 2017
1 parent c0aeb7b commit 0ed37c2
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions scripts/windows/condainstall.bat
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ 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 # `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"
)
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 - conda-forge >> "%PREFIX%\.condarc"
echo - defaults >> "%PREFIX%\.condarc"

for %%f in ( *.tar.bz2 ) do (
echo Installing: %%f
Expand Down

0 comments on commit 0ed37c2

Please sign in to comment.