File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,15 @@ if not exist "%PREFIX%\python.exe" (
1212 rem # Create an empty initial skeleton to layout the conda, activate.bat
1313 rem # and other things needed to manage the environment. conda 4.1.*
1414 rem # requires at least one package name to succeed
15+ " %CONDA% " create --yes --quiet --prefix " %PREFIX% " ^
16+ || exit /b !ERRORLEVEL!
17+
1518 for %%f in ( vs*_runtime*.tar.bz2 ) do (
16- " %CONDA% " create --yes --quiet --prefix " %PREFIX% " " %CD% \%%f " ^
19+ " %CONDA% " install --yes --copy --quiet --prefix " %PREFIX% " " %CD% \%%f " ^
1720 || exit /b !ERRORLEVEL!
1821 )
1922
23+ echo Installing python into " %PREFIX% "
2024 rem # Also install python (msvc runtime and python might be required
2125 rem # for any post-link scripts).
2226 for %%f in ( python-*.tar.bz2 ) do (
You can’t perform that action at this time.
0 commit comments