摘要:
这两天抽空玩了一把 Graphrag, 记录一下测试步骤。 先决条件: Python 3.10-3.12 备注: 以下所有脚本都在 PowerShell环境下运行 1. 首先安装一下 graphrag python包 pip install --trusted-host https://mirror 阅读全文
摘要:
1. 管理身份下执行 CMD REG ADD “HKLM\Software\Policies\Google\Chrome” /v RendererCodeIntegrityEnabled /t REG_DWORD /d 0 2. 重启 Chrome 阅读全文
摘要:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths 阅读全文
摘要:
powershell (new-object System.Net.WebClient).DownloadFile('文件url','保存路径'); 阅读全文
摘要:
string json = @"{ '$type':'System.Windows.Data.ObjectDataProvider, PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad3 阅读全文
摘要:
先来一顿操作 git config --global core.quotepath false git config --global gui.encoding utf-8 git config --global i18n.commit.encoding utf-8 git config --glo 阅读全文
摘要:
要列出所有可用的命令,只需键入以下命令 compgen -c debian 10 apt update apt install 阅读全文
摘要:
COPY ./src/*/*.csproj . RUN for file in $(ls *.csproj); do mkdir -p src/${file%.*}/ && mv $file src/${file%.*}/; done 阅读全文
摘要:
powershell -Command (Measure-Command { "docker build --no-cache -f 2.2/Dockerfile 2.2" }).TotalSeconds 阅读全文
摘要:
Dockerfile命名为 DockerFile时 docker build 时抛异常 failed to solve with frontend dockerfile.v0: failed to read dockerfile 解决办法 touch Dockerfile 阅读全文