最近在研究 Python测试驱动开发 (豆瓣)https://book.douban.com/subject/30259452/
在我的mac 中搭建相应的环境,并解决碰到的问题,在此总结一下。
1 环境配置过程具体过程可参考书本
安装Geckodriver此处需要安装最新版本,其连接如下
Release 0.30.0 · mozilla/geckodriver · GitHub
python - WebDriverException: Message: Service geckodriver unexpectedly exited、Status code was: 64 error using Selenium Geckodriver Firefox in FreeBSD jail - Stack Overflowhttps://stackoverflow.com/questions/70821737/webdriverexception-message-service-geckodriver-unexpectedly-exited-status-cod
如果运行过程中出现如下类似错误
可参考该篇文章进行解决macOS:无法打开“XXXX”,因为Apple无法检查其是否包含恶意软件。的解决办法_不积跬步无以至千里-CSDN博客_apple无法检查其是否包含恶意软件怎么办
解压完成后运行如下命令
mv geckodriver /usr/local/bin
并在~/.bashrc文件中添加如下语句
PATH=/usr/local/bin/geckodriver:"${PATH}"
安装python3.9此处只需运行
brew install python@3.9
安装virtualenvwrapper此处需要首先运行
brew install virtualenv
然后运行
pip install --user virtualenvwrapper
在~/.bashrc的文件中添加如下语句
source /Users/qinliansong/Library/Python/3.9/bin/virtualenvwrapper.sh
运行
source ~/.bashrc
然后运行
mkvirtualenv --python=python3.9 superlistsworkon superlists
安装Django和Seleniumpip install "django<3" "selenium<4"
2 总结完成上述过程后,便可以开始你自己的python web开发之旅了。