Skip to content

Instantly share code, notes, and snippets.

@ruslanmv
Created February 17, 2024 18:34
Show Gist options
  • Save ruslanmv/06d5f59697d300def867b60d5609db1d to your computer and use it in GitHub Desktop.
Save ruslanmv/06d5f59697d300def867b60d5609db1d to your computer and use it in GitHub Desktop.
Create python environment with venv
import subprocess
import sys
import venv
import os
venv.create("venv", with_pip=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment