Which set of commands will create a directory named envs in the current working directory and within that directory will create a virtual environment named test-env using virtualenv (Windows)? The > character stands for a command prompt.

Questions & AnswersCategory: PythonWhich set of commands will create a directory named envs in the current working directory and within that directory will create a virtual environment named test-env using virtualenv (Windows)? The > character stands for a command prompt.
Geek Boy Staff asked 2 years ago

Which set of commands will create a directory named envs in the current working directory and within that directory will create a virtual environment named test-env using virtualenv (Windows)? The > character stands for a command prompt.
a.

> mkdir envs
> cd envs
> virtualenv test-env

b.

> virtual test-env
> cd test-env

c.

> virtualenv test-env
> mkdir envs
> cd envs