摘要:
今天 安装了卡巴后 office 超链接功能不能使用了,一点击超链接,就会发出警报,说”由于本机的限制,此操作已被取消,请与系统管理员联系“ 解决办法:1打开注册表2到这个位置:HKEY_CURRENT_USER\Software\Classes\3新建项:“.html”4在该项输入默认数值数据:“ 阅读全文
只有注册用户登录后才能阅读该文。 阅读全文
摘要:
学习selenium对话框处理出现错误 a.py内容: from selenium import webdriver import timedriver = webdriver.Firefox()driver.get("http://www.baidu.com/") time.sleep(3)#点击 阅读全文
摘要:
安装beautifulsoup后,运行测试报错 经过测试发现是lxml的问题,使用 pip install lxml 安装,安装完后,在运行还是一样出错, 经百度、知乎的说法是新的库不支持,新版本语法支持改变了 使用 pip install lxml时,自动安装的是最新 4.2.5版本 解决方法一: 阅读全文
摘要:
进https://www.vim.org/scripts/script.php?script_id=4521网站下载vim -auto-save https://www.vim.org/scripts/download_script.php?src_id=26426 tar xvf vim-auto 阅读全文
摘要:
移动硬盘是NTFS格式的,挂载时候kernel不支持这格式 出现:filesystem type ntfs not configured in kernel 阅读全文
摘要:
1安装wine,wine安装使用网上自行查找 2、安装flash播放器.exe 下载附件的falsh播放相关.tar.gz,解压后得到 Flash.ocx (flash10 for windows的插件和 Swf播放器.exe) 下载:https://pan.baidu.com/s/1faO_XRP 阅读全文
摘要:
这里安装的是hplip 1.首先确定cups有没有安装 没有的话 yum install cups 安装 2.安装 hplip yum install -y hplip hplip-* 3执行 hp-setup 安装 plugin 阅读全文
摘要:
pip的使用,对于默认的pip源的速度经常出现不稳定以及访问速度非常慢的情况 使用自己指定的镜像源来提升速度 pip install 要安装的包 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com 例: pip insta 阅读全文