Untitled

 avatar
unknown
plain_text
11 days ago
235 B
18
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