下载 zip 文件后,如何在 ubuntu 中设置歌剧驱动程序或任何其他驱动程序?



我是自动化新手,我正在研究 ubuntu 操作系统,现在我在机器人框架中有几个测试用例,我正在尝试使用 opera 浏览器运行它们,但我不知道如何安装驱动程序后我从这里下载了 zip:

https://github.com/operasoftware/operachromiumdriver/releases

设置的步骤是什么?

好吧,如果有人需要它,我解决了它,这些是步骤:

1. Go to https://github.com/operasoftware/operachromiumdriver/releases
2. Right click on  operadriver_linux64.zip 
3. Copy link address 
4. Open Terminal 
5. type wget https://github.com/operasoftware/operachromiumdriver/releases/download/v.78.0.3904.87/operadriver_linux64.zip (this is the address you copied before)
6. unzip operadriver_linux64.zip
7. sudo mv operadriver /usr/bin/operadriver
8. sudo chown root:root /usr/bin/operadriver
9. sudo chmod +x /usr/bin/operadriver
10. Verify it is correct installation by typing... which operadriver (you should get the path like usr/bin/operadriver.

最新更新