'virtualenv' is not recognized as an internal or external command, operable program or batch file

前端 未结 11 1393
既然无缘
既然无缘 2020-11-30 04:04

i\'m completely new to the python and django.,after installation of python and django. i\'m trying to use virtualenv for django project purpose using virtula env . i install

11条回答
  •  独厮守ぢ
    2020-11-30 04:31

    If you can not find your 'virtualenv' command in the windows console after installing it with pip try this to make your environment:

    python -m virtualenv 
    

    If you need to use a specific version of python, initialize it like this:

    python -m virtualenv  -p=
    

    When using windows for first installation, you can use python from WindowsApp

提交回复
热议问题