Untitled
Anonymous
plain_text
04/15/2025 7:08 AM
316 B
33
Indexable
if args.create:
print("give path to create a new virtual environment in:")
new_venv = input() or os.getcwd()
os.chdir(new_venv)
os.system("mkdir .venv")
print("here",os.getcwd())
os.system("python -m venv .venv")
print("there")
Editor is loading...
Leave a Comment