Untitled
Anonymous
plain_text
04/15/2025 7:14 AM
320 B
31
Indexable
import venv
from pathlib import Path
if args.create:
print("give path to create a new virtual environment in:")
new_venv = input() or os.getcwd()
target_dir = Path.cwd() / new_venv
venv.create(target_dir / ".venv")
print("there")
Editor is loading...
Leave a Comment