Skip to content

Instantly share code, notes, and snippets.

View LostIndeterminateParticle's full-sized avatar

Alton Schultheis LostIndeterminateParticle

View GitHub Profile
@LostIndeterminateParticle
LostIndeterminateParticle / run_python_script_in_conda_env.bat
Created October 30, 2025 00:06 — forked from 1kastner/run_python_script_in_conda_env.bat
Run a Python script in a conda environment from a batch file
@ECHO OFF
SETLOCAL EnableDelayedExpansion
REM Insert your conda env here
SET CONDA_ENV=MY_DESIRED_CONDA_ENV
CALL :activate_conda_env
REM Insert your python script here