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

后端 未结 8 729
猫巷女王i
猫巷女王i 2020-11-29 00:07

I am using Python 3.5.2 version on Windows 7 and tried using python3 app.py. I am getting this error message:

\'python3\' is not recognized as an         


        
8条回答
  •  春和景丽
    2020-11-29 00:57

    For Python 27

    virtualenv -p C:\Python27\python.exe django_concurrent_env
    

    For Pyton36

     virtualenv -p C:\Python36\python.exe django_concurrent_env
    

提交回复
热议问题