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