Untitled
unknown
plain_text
8 months ago
235 B
21
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