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

后端 未结 4 1112
再見小時候
再見小時候 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条回答
  •  無奈伤痛
    2021-02-15 04:47

    Just a comment: On my Win10, for python3 scripts, I run py c:\path\to\script.
    For example:

    py -m pip --version
    

    So to make the above command work, I used:

    py -m venv env
    

    and:

    virtualenv -p py env
    

    So that could be a possible solution as well.

提交回复
热议问题