j.alkaline
j.alkaline

Reputation: 93

python virtualenv not working after setting path

So I installed Python 3.6 and set the environment path to it like : C:\Users\danny\AppData\Local\Programs\Python\Python36-32\.

When I try to create a virtual environment (e.g. virtualenv Venv) it is not working. I get the error:

" The term 'virtualenv' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again."

The path is set correctly. I don't know what is wrong.

Upvotes: 0

Views: 898

Answers (1)

Natiq Vahabov
Natiq Vahabov

Reputation: 504

Check if it is working or not

virtualenv -p python3 envname

Upvotes: 1

Related Questions