摘要: 原因:由于“通过pip安装pytest不会使其成为系统命令,而是会将其安装到python” “-m命令将pytest作为其自己的命令运行,然后任何后续脚本都将作为参数。” 解决: 所以我们在命令窗口执行时应该在 .py文件所在路径下 执行 python -m pytest -v test_wewor 阅读全文
posted @ 2023-11-06 14:14 翻滚的小强 阅读(73) 评论(0) 推荐(0) 编辑
摘要: Host key for 47.116.79.175 has changed and you have requested strict checking. Host key verification failed. 问题原因用OpenSSH的人都知ssh会把你每个你访问过计算机的公钥(public 阅读全文
posted @ 2023-10-30 18:30 翻滚的小强 阅读(83) 评论(0) 推荐(0) 编辑
摘要: You must address the points described in the following [2] lines before starting Elasticsearch.bootstrap check failure [1] of [2]: max number of threa 阅读全文
posted @ 2023-10-20 17:59 翻滚的小强 阅读(55) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_44259720/article/details/128959100 导读 小编之前使用过 VMware workstation 工具搭建 Centos 7 版本的虚拟机集群,各项功能都正常,用完了也就清除了(节约本地空间)。因为最近学习大数 阅读全文
posted @ 2023-06-08 15:47 翻滚的小强 阅读(318) 评论(0) 推荐(0) 编辑
摘要: wget https://raw.githubusercontent.com/kubernetes/dashboard/master/aio/deploy/recommended.yaml 404不能访问 问题截图: 说明:查找的解决办法都是查找raw.githubusercontent.com的i 阅读全文
posted @ 2023-06-05 19:54 翻滚的小强 阅读(78) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/morecccc/article/details/126716080 参照如上地址 python安装cv2模块 解决安装慢的问题 我在这个路径下面 C:\Users\renyc\AppData\Roaming 新建了pip文件夹 再次新建pip.ini配置 阅读全文
posted @ 2023-05-27 18:57 翻滚的小强 阅读(669) 评论(0) 推荐(0) 编辑
摘要: pip install webdriver-manager 验证是否成功代码如下: from selenium import webdriverdriver = webdriver.Chrome()url = 'https://www.csdn.net/'driver.get(url)driver. 阅读全文
posted @ 2023-05-27 11:13 翻滚的小强 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 一、报错如下Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for d 阅读全文
posted @ 2023-05-22 18:35 翻滚的小强 阅读(915) 评论(0) 推荐(0) 编辑
摘要: 解决: https://blog.csdn.net/Jimmmyking/article/details/126105788 作为mac的用户,如果你还没安装Homebrew那真的就太遗憾了,应为其真的很好用,然后安装Homebrew有时候有不是那么简单,会出现很多奇奇怪怪的错误,如下是我本人第一次 阅读全文
posted @ 2023-05-15 23:30 翻滚的小强 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 原因:~/.bash_profile文件改坏了 操作: 1.在终端输入 export PATH="/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin" ,命令暂时可以用了 2. 在终端输入 open -e ~/.bash_profile 阅读全文
posted @ 2023-05-15 22:54 翻滚的小强 阅读(214) 评论(0) 推荐(0) 编辑