Add files via upload
Add script to open cmd within installation environment for easier modification.
This commit is contained in:
parent
eec773b1f4
commit
f0c82f06c3
1 changed files with 15 additions and 0 deletions
15
micromamba-cmd.bat
Normal file
15
micromamba-cmd.bat
Normal file
|
@ -0,0 +1,15 @@
|
|||
@echo off
|
||||
|
||||
set MAMBA_ROOT_PREFIX=%cd%\installer_files\mamba
|
||||
set INSTALL_ENV_DIR=%cd%\installer_files\env
|
||||
|
||||
if not exist "%MAMBA_ROOT_PREFIX%\Scripts\activate.bat" (
|
||||
call "%MAMBA_ROOT_PREFIX%\micromamba.exe" shell hook >nul 2>&1
|
||||
)
|
||||
call "%MAMBA_ROOT_PREFIX%\condabin\mamba_hook.bat" || ( echo Micromamba hook not found. && goto end )
|
||||
call micromamba activate "%INSTALL_ENV_DIR%" || goto end
|
||||
|
||||
cmd /k "%*"
|
||||
|
||||
:end
|
||||
pause
|
Loading…
Add table
Add a link
Reference in a new issue