I'm trying to do a simple thing where I activate another environment and run some code in that environment, using subprocess.check_call. I know I should be able to do that without conda activate myenv ...
# This will print all *.py files in the current directory print("### Find all *.py files in the current directory ###") ...