This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo OFF | |
| rem Run a Python script in a given conda environment from a batch file. | |
| rem Define here the path to your conda installation | |
| set CONDAPATH=C:\ProgramData\Anaconda3 | |
| rem Check for Miniconda3 or Anaconda3 | |
| If EXIST %CONDAPATH% ( | |
| ECHO "Anaconda3 installation found..." | |
| ) else ( |