我已按照网站上的说明进行操作:http://selenium-python.readthedocs.org/en/latest/installation.html
我按照以下部分:Windows用户的详细说明:
通过下载并安装(python-2.7.3.msi)到我的窗口完成了第1步。现在我对第二步感到困惑。我需要的是我无法理解的,我刚刚下载了“pypa-virtualenv-1.8.1-74-g2adac08.tar.gz”并将其解压缩到文件夹“D:\ Python和Selenium”。步骤1中提到的MSI .exe文件和这个.zip文件都出现在我刚刚提到的同一目录中。
我也尝试了下面的内容,但出现了错误:
Microsoft Windows [Version 6.1.7600]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\Arup Rakshit>cd..
C:\Users>cd..
C:\>d:
D:\>cd D:\Python and Selenium\pypa-virtualenv-2adac08
D:\Python and Selenium\pypa-virtualenv-2adac08>pip install https://github.com/py
pa/virtualenv/tarball/develop
'pip' is not recognized as an internal or external command,
operable program or batch file.
D:\Python and Selenium\pypa-virtualenv-2adac08>
您现在可以指导我成功将其安装到我的电脑上吗?
的更新 的
Microsoft Windows [Version 6.1.7600]
Copyright (c) 2009 Microsoft Corporation. All rights reserved.
C:\Users\Arup Rakshit>cd..
C:\Users>cd..
C:\>cd Python27
C:\Python27>cd python.exe
The directory name is invalid.
C:\Python27>python.exe virtualenv.py selenv
python.exe: can't open file 'virtualenv.py': [Errno 2] No such file or directory
C:\Python27>
C:\Python27>
答案 0 :(得分:2)
您需要在您的文件夹中包含此文件:
然后使用命令行运行:
C:\Python27\python.exe virtualenv.py selenv
之后你会有一个名为“selenv”的子文件夹。 使用命令行运行:
selenv\Scripts\pip.exe install selenium
并检查是否可以运行python-selenium脚本 selenv \ Scripts \ python.exe my_selenium_script.py
请注意,您需要使用pip的完整路径,因为您没有在Windows PATH中使用它