Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

conda_installer: Include conda in environment #2616

Merged
merged 1 commit into from
Sep 25, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions scripts/windows/condainstall.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down