无法在Python3中创建Virtualenv

时间:2018-11-06 23:51:58

标签: python python-3.x google-api virtualenv command-prompt

因此,我正在尝试创建一个使用Google API文本识别的应用程序,但是在python3中我还不错,但是在编程方面还是非常初学者,所以我不知道发生了什么。我只是按照所有步骤操作,甚至创建了一个系统变量,将scripts文件夹放在我的PATH或任何其他内容中。我的问题是,当我尝试遵循提供的图片These are the instructions that the Google documentation is giving.中的步骤时,在命令提示符Here are the errors I'm seeing in the command prompt when I input the stuff that the Google Documentation said to put.的第二张图片中遇到了问题。我真的需要帮助来完成此操作,也请告诉我我在做什么。

3 个答案:

答案 0 :(得分:0)

virtualenv可能尚未安装。您可以使用pip3 install virtualenv进行此操作。 pip3从版本3.4开始与Python捆绑在一起,但是如果没有,请参见https://pip.pypa.io/en/stable/installing/

如果确定确实安装了virtualenv,则很可能不在系统路径上。使用set PATH=%PATH%;C:\your\path\here并将C:\your\path\here\替换为virtualenv.exe的位置。

答案 1 :(得分:0)

代替使用 virtualenv venv

尝试

py -3 -m venv venv

创建虚拟环境

http://flask.pocoo.org/docs/1.0/installation/

答案 2 :(得分:0)

py -3 -m venv venv 在我的 Windows 上为我工作,在我还做了其他的建议之后,比如重新安装 virtualenv 和设置路径。现在,我可以在我的工作目录中看到 venv 文件夹了。