会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
深以为然
首页
新随笔
联系
订阅
管理
2026年3月2日
Stable Diffusion WebUI整合包 AMD显卡驱动使用记录
摘要: 使用B站秋叶的sd-webui-aki-v4.11.1-cu128版本 amd驱动要用24.12.1版本的,地址 HIP SDK ROCm要用5.7版本的,不能用6.X版本的,地址 如果sd-webui整合包更新,可能不用这些驱动,但目前4.11这个版本还是需要ROCm5.7版本的 附上秋叶下载导航
阅读全文
posted @ 2026-03-02 09:20 深以为然
阅读(18)
评论(0)
推荐(0)
2025年4月18日
linux常用命令
摘要: 压缩文件 tar -zcvf 压缩后的文件名.tar.gz 要压缩的文件或文件夹路径 tar -zcvf example.tar.gz example 解压文件 tar -zxvf 压缩文件名.tar.gz 如果需要将文件解压到指定的目录,可以添加 -C 参数,如: tar -zxvf exampl
阅读全文
posted @ 2025-04-18 21:18 深以为然
阅读(37)
评论(0)
推荐(0)
2025年2月25日
conda笔记
摘要: 自己常用命令记录一下 一.下载conda和miniconda(清华镜像) 二.pip镜像 1.设置镜像 pip config set global.index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple 2.查看镜像地址 pip
阅读全文
posted @ 2025-02-25 10:56 深以为然
阅读(69)
评论(0)
推荐(0)
2023年5月15日
webstorm配置了vite.config.js还是识别不了
摘要: 不是webpack,而是vite 1.根目录新建tsconfig.json,或者jsconfig.json 2.复制代码 { "compilerOptions": { "baseUrl": "./", "paths": { "@/*": ["./src/*"] } } }
阅读全文
posted @ 2023-05-15 09:51 深以为然
阅读(733)
评论(0)
推荐(0)
2023年3月29日
cocos学习笔记
摘要: 碰撞事件 // 发生碰撞 onCollisionEnter(other: cc.Collider, self: cc.Collider): void { console.log(other.tag); } // 持续碰撞 onCollisionStay(other: cc.Collider, sel
阅读全文
posted @ 2023-03-29 13:50 深以为然
阅读(65)
评论(0)
推荐(0)
2022年11月17日
pandas学习
摘要: # 取最大值 max = df['code'].max() # 某一列在哪一行 data["high"].idxmax() #显示所有的列 pandas.set_option('display.max_columns', None) #显示所有的行 pandas.set_option('displa
阅读全文
posted @ 2022-11-17 10:18 深以为然
阅读(79)
评论(0)
推荐(0)
2022年8月18日
centos7 安装anaconda
摘要: conda下载地址(清华镜像) 注意:tushare实时需要安装Anaconda3-2018.12-Linux-x86_64.sh 1.下载conda文件 wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/Anaconda3-201
阅读全文
posted @ 2022-08-18 16:15 深以为然
阅读(334)
评论(0)
推荐(0)
2021年10月19日
解决el-table渲染卡顿组件
摘要: https://github.com/livelyPeng/pl-table http://www.umyui.com/umycomponent/intro https://xuliangzhan_admin.gitee.io/vxe-table/#/table/start/install
阅读全文
posted @ 2021-10-19 11:47 深以为然
阅读(814)
评论(0)
推荐(0)
2019年9月20日
egg-mysql利用offset做分页
摘要: 0 15 1-1516 31 2-1532 47 3-1548 63 4-15 1*15-15 2*15-153*15-154*15-15 offset公式 (page*limit-limit)
阅读全文
posted @ 2019-09-20 09:15 深以为然
阅读(1849)
评论(0)
推荐(0)
2019年2月15日
vue中audio音频播放
摘要: audio音频在vue播放整理 this.audio = new Audio(); this.audio.src = mp3; let playPromise; playPromise = this.audio.play(); if (playPromise) { playPromise.then(
阅读全文
posted @ 2019-02-15 22:45 深以为然
阅读(43759)
评论(0)
推荐(1)
下一页
公告