{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "4826c91d", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'2025-10-18-16-35-47'" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from datetime import datetime\n", "\n", "datetime.now().strftime(\"%Y-%m-%d-%H-%M-%S\")" ] }, { "cell_type": "code", "execution_count": null, "id": "9419e692", "metadata": {}, "outputs": [], "source": [ "import subprocess\n", "\n", "# Path to the Python interpreter in the other virtual environment\n", "venv_python = r\"/path/to/other/venv/bin/python\" # On Windows: r\"C:\\path\\to\\other\\venv\\Scripts\\python.exe\"\n", "\n", "# Path to the .py file you want to run\n", "script_path = r\"/path/to/your_script.py\"\n", "\n", "# Optional: arguments to pass to the script\n", "args = [\"arg1\", \"arg2\"]\n", "\n", "# Build the command\n", "command = [venv_python, script_path] + args\n", "\n", "try:\n", " # Run the subprocess\n", " result = subprocess.run(command, capture_output=True, text=True)\n", "\n", " # Print output and errors\n", " print(\"STDOUT:\\n\", result.stdout)\n", " print(\"STDERR:\\n\", result.stderr)\n", " print(\"Return Code:\", result.returncode)\n", "\n", "except Exception as e:\n", " print(f\"Error occurred: {e}\")\n" ] } ], "metadata": { "kernelspec": { "display_name": ".venv", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.10.0" } }, "nbformat": 4, "nbformat_minor": 5 }