linux
文章平均质量分 78
Daletxt
这个作者很懒,什么都没留下…
展开
-
selenium+phantomjs报错raise WebDriverException(“Can not connect to the Service %s“ % self.path)
报错:raise WebDriverException("Can not connect to the Service %s" % self.path)selenium.common.exceptions.WebDriverException: Message: Can not connect to the Service .../phantomjs-2.1.1-linux-x86_64/bin/phantomjs代码:driver = webdriver.PhantomJS(executa原创 2021-04-07 19:07:42 · 1080 阅读 · 1 评论 -
如何在Linux和Mac之间互传文件/文件夹
以下均在Mac上操作:Mac上传文件/文件夹到Linux上:【scp Mac路径 Linux用户名@ip地址:Linux绝对路径】(文件夹加参数scp -r)例:绝对路径:scp /mac/test/test.py root@192.163.20.30:/var/linux/tests/相对路径:scp ./test.py xiaoming@192.189.10.10:/v...原创 2018-12-26 11:54:41 · 3708 阅读 · 0 评论 -
CentOS Linux release 7.5 安装python3
我的云服务器是CentOS Linux release 7.5.1804 (Core) 环境,用python3.6源码安装时,因为没有c编译环境,搞了半天,安装不上gcc和make,不能make和make install,找了半天,找到了下边这种方式安装成功。使用Yum源安装Python3.6IUS软件源中包含了Python3.6,可以使用IUS软件源安装Python3.61)安装IU...原创 2019-01-23 17:51:00 · 739 阅读 · 2 评论 -
Python全局未知异常捕获
log日志监测程序运行:可以1⃣️Linux重定向将python运行报错记录到log日志中,2⃣️或者用python内置的logging模块。但是在用logging模块时,try...except...可以捕获到可预见/考虑到的异常,用logging记录到log日志文件中,但是在对于未知异常或导致程序退出时的情形无法记录到log日志中,用Linux的重定向可以捕捉到。现在到问题...原创 2019-05-29 11:39:12 · 3304 阅读 · 0 评论