13 lines
232 B
Batchfile
13 lines
232 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
:: ---------- USER DEFINE --------------
|
|
set "ymlPath=condaenv.yml"
|
|
:: -------------------------------------
|
|
|
|
:: Execute the Python script
|
|
conda env create -f "%ymlPath%"
|
|
|
|
:: Pause at the end of the script
|
|
pause
|