Untitled
unknown
plain_text
8 months ago
239 B
19
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