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.
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