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

后端 未结 4 1099
再見小時候
再見小時候 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:32

    After reading this tutorial, I found the workaround for my case:

    virtualenv --python "C:\\Anaconda3\\python.exe" env
    

提交回复
热议问题