virtualenv on Windows10 gives error:The path python3 does not exist

后端 未结 4 1113
再見小時候
再見小時候 2021-02-15 03:47

I\'m trying the tutorial Using Cloud Datastore with Python, but when I run:

virtualenv -p python3 env

I got an error:

The path          


        
4条回答
  •  Happy的楠姐
    2021-02-15 04:31

    If python --V is showing a version greater than 3, then why not try:

    virtualenv -p python env
    

    instead? The value of the p flag is simply referring to the version of python you're wanting to create the virtual environment with. In this case, python is greater than version 3.

提交回复
热议问题