10 lines
244 B
PowerShell
10 lines
244 B
PowerShell
#---------- USER DEFINE --------------
|
|
$ymlPath = "./condaenv.yml"
|
|
#-------------------------------------
|
|
|
|
# Execute the Python script
|
|
& conda env create -f $ymlPath
|
|
|
|
# Pause at the end of the script
|
|
# Read-Host -Prompt "Press any key to exit"
|