MCPcopy Index your code
hub / github.com/AutoForgeAI/autoforge / venvPython

Function venvPython

lib/cli.js:204–208  ·  view source on GitHub ↗

Return the path to the Python executable inside the venv.

()

Source from the content-addressed store, hash-verified

202
203/** Return the path to the Python executable inside the venv. */
204function venvPython() {
205 return IS_WIN
206 ? join(VENV_DIR, 'Scripts', 'python.exe')
207 : join(VENV_DIR, 'bin', 'python');
208}
209
210/** SHA-256 hash of the requirements-prod.txt file contents. */
211function requirementsHash() {

Callers 2

ensureVenvFunction · 0.85
startServerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected