2024年9月14日
摘要:
1. 官網(wǎng)下載 openssl 安裝包 https://slproweb.com/products/Win32OpenSSL.html 下載對應(yīng)的 light 版本就行 2. 安裝 安裝默認(rèn)配置安裝,最后捐贈可以選擇不勾選,有條件的建議捐贈。 3. 配置環(huán)境變量 在高級系統(tǒng)配置里找到環(huán)境變量配置,新
閱讀全文
posted @ 2024-09-14 11:40
W1N9s
閱讀(3874)
推薦(0)
2024年8月18日
摘要:
1. 下載插件 地址:https://github.com/crystian/ComfyUI-Crystools 方式一:git clone 方式二:下載 zip 文件,解壓到 xxx\ComfyUI_windows_portable\ComfyUI\custom_nodes 文件夾下 2. 安裝
閱讀全文
posted @ 2024-08-18 13:53
W1N9s
閱讀(1074)
推薦(0)
2024年8月10日
摘要:
1、設(shè)置源pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 2、刪除源pip config unset global.index-url 3、查看設(shè)置pip config list
閱讀全文
posted @ 2024-08-10 23:03
W1N9s
閱讀(39)
推薦(0)
摘要:
1. 下載 webui 源碼 地址:https://github.com/AUTOMATIC1111/stable-diffusion-webui clone 或者下載壓縮包解壓。 2. 啟動 雙擊 stable-diffusion-webui-1.10.0\webui-user.bat 文件 會下
閱讀全文
posted @ 2024-08-10 22:58
W1N9s
閱讀(645)
推薦(0)
2024年8月8日
摘要:
使用 nvm 時,默認(rèn)的全局包安裝路徑 prefix 是當(dāng)前激活的 Node.js 版本的安裝路徑 解決方法:統(tǒng)一安裝路徑 npm config set prefix "C:\Users\Administrator\AppData\Roaming\npm" 查看 npm 全局包安裝路徑 npm pr
閱讀全文
posted @ 2024-08-08 12:15
W1N9s
閱讀(305)
推薦(0)
2024年8月7日
摘要:
1. 修改配置文件 // config.default.js config.session = { ... sameSite: "none", secure: true, }; config.cors = { origin: "xxx", credentials: true, allowMethod
閱讀全文
posted @ 2024-08-07 00:12
W1N9s
閱讀(43)
推薦(0)
2022年5月30日
摘要:
// android\app\build.gradle android { defaultConfig { ... missingDimensionStrategy "react-native-camera", "general" } }
閱讀全文
posted @ 2022-05-30 16:46
W1N9s
閱讀(47)
推薦(0)
2022年5月18日
摘要:
打開 cmd,輸入 npm config edit 打開 .npmrc 文件 文件頂部設(shè)置 registry=xxx 下增加一行:electron_mirror=https://cdn.npm.taobao.org/dist/electron/ ;;;; ; npm userconfig file
閱讀全文
posted @ 2022-05-18 22:46
W1N9s
閱讀(42)
推薦(0)
2022年2月6日
摘要:
HTMLElement.offsetTop 為只讀屬性,它返回當(dāng)前元素相對于其 offsetParent 元素的頂部內(nèi)邊距的距離。 HTMLElement.offsetParent 是一個只讀屬性,返回一個指向最近的(指包含層級上的最近)包含該元素的定位元素或者最近的 table,td,th,bod
閱讀全文
posted @ 2022-02-06 14:13
W1N9s
閱讀(68)
推薦(0)
2022年1月1日
摘要:
原因: socket.io-client 版本和服務(wù)器 socket.io 版本不匹配 socket.on('connect_error', e => { console.log('connect_error', e); }); 可輸出看連接錯誤日志。
閱讀全文
posted @ 2022-01-01 15:39
W1N9s
閱讀(1696)
推薦(0)