随笔分类 - 碰到问题解决方案集合
记录
摘要:貌似只有360浏览器可以上传 先安装 https://www.flash.cn/ 下载安装 安装后 我用的好几个浏览器都不好使,就360可以
阅读全文
摘要:起因 买了个腾讯云服务器,用户默认ubuntu,每次登录都要su root才切换到root,麻烦 解决 vim /etc/ssh/sshd_config 新增一条 PermitRootLogin yes 然后重启: service sshd restart 如果未设置root密码,则需要设置root
阅读全文
摘要:起因 Github Copilot 过期了,找替代品 于是就有了这个codeium 注意: 安装后如果不弹出登录界面 就: 双击shift弹出搜索框,然后输入Provide Auth Token to Codeium,点击进去,会出现url。复制url到浏览器打开并登录,然后复制token粘贴到py
阅读全文
摘要:解释 RuntimeError: The scheduler seems to be running under uWSGI, but threads have been disabled. You must run uWSGI with the --enable-threads option fo
阅读全文
摘要:本地部署 const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, // devServer: { // open: true,
阅读全文
摘要:# 问题截图 > 前面有一个问题,error:说是找不到文件,在公司没写博客,没截图  # 解决方法 把进入ana
阅读全文
摘要:我这用的selenium版本是4.9.0 >如果是更高的版本 不用加 :可参考:https://stackoverflow.com/questions/76550506/typeerror-webdriver-init-got-an-unexpected-keyword-argument-execu
阅读全文
摘要:写入csv出现 with open(f'{today}深圳.csv', 'a', encoding='ANSI', newline='') as f: 出现错误:UnicodeEncodeError: 'mbcs' codec can't encode characters in position
阅读全文