Python 3 "virtualenv not recognized" -
i used pip install virtualenv project directory. however, when go run command virtualenv venv in windows terminal, tells me not recognized.
is there have in python run? understanding ran pip script, , long in correct directory should run.
this blog post trying follow: https://developer.amazon.com/blogs/post/8e8ad73a-99e9-4c0f-a7b3-60f92287b0bf/new-alexa-tutorial-deploy-flask-ask-skills-to-aws-lambda-with-zappa
first, install virtualenv pip using pip install virtualenv.
after installing can create virtualenv virtualenv venv
if virtualenv command not recognised computer means path not setup python packages. make sure python packages path in environmental variables.
or
you can try directly python -m virtualenv venv
Comments
Post a Comment