MCPcopy Index your code
hub / github.com/LCBOWER33/StegoScan / create_virtual_env

Function create_virtual_env

StegoScan.py:82–86  ·  view source on GitHub ↗

Creates a virtual environment if it doesn't exist.

()

Source from the content-addressed store, hash-verified

80
81
82def create_virtual_env():
83 """Creates a virtual environment if it doesn't exist."""
84 if not os.path.exists(VENV_DIR):
85 print(f"Creating virtual environment: {VENV_DIR}")
86 venv.create(VENV_DIR, with_pip=True)
87
88
89def get_venv_python():

Callers 1

StegoScan.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected