From abb211f158019bc847b1255c6c0b2a2c35f0c935 Mon Sep 17 00:00:00 2001 From: Alexandre CUER Date: Tue, 2 Jun 2026 20:09:39 +0200 Subject: [PATCH] Include pyenergyplus in vscode path --- .vscode/README.md | 5 +++++ .vscode/settings.json | 8 ++++++++ 2 files changed, 13 insertions(+) create mode 100644 .vscode/README.md create mode 100644 .vscode/settings.json diff --git a/.vscode/README.md b/.vscode/README.md new file mode 100644 index 0000000..3ebf44c --- /dev/null +++ b/.vscode/README.md @@ -0,0 +1,5 @@ +test if path to pyenergyplus is OK : + +``` +py -c "from pyenergyplus.api import EnergyPlusAPI; print('OK')" +``` diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..c4287f4 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "terminal.integrated.env.windows": { + "PYTHONPATH": "C:\\EnergyPlusV24-1-0" + }, + "python.analysis.extraPaths": [ + "C:\\EnergyPlusV24-1-0" + ] +}