本地构建运行seleniumhq.github.io时,报错
PS D:\Repositories\Geekmister\seleniumhq.github.io\seleniumhq.github.io.git\website_and_docs> hugo server WARN deprecated: config: languages.zh-cn.description: custom params on the language top level was deprecated in Hugo v0.112.0 and will be removed in a future release. Put the value below [languages.zh-cn.params]. See https://gohugo.io/content-management/multilingual/#changes-in-hugo-01120WARN deprecated: config: languages.ja.description: custom params on the language top level was deprecated in Hugo v0.112.0 and will be removed in a future release. Put the value below [languages.ja.params]. See https://gohugo.io/content-management/multilingual/#changes-in-hugo-01120WARN deprecated: config: languages.other.description: custom params on the language top level was deprecated in Hugo v0.112.0 and will be removed in a future release. Put the value below [languages.other.params]. See https://gohugo.io/content-management/multilingual/#changes-in-hugo-01120WARN deprecated: config: languages.en.description: custom params on the language top level was deprecated in Hugo v0.112.0 and will be removed in a future release. Put the value below [languages.en.params]. See https://gohugo.io/content-management/multilingual/#changes-in-hugo-01120WARN deprecated: config: languages.pt-br.description: custom params on the language top level was deprecated in Hugo v0.112.0 and will be removed in a future release. Put the value below [languages.pt-br.params]. See https://gohugo.io/content-management/multilingual/#changes-in-hugo-01120hugo: downloading modules …go: github.com/google/docsy@v0.8.0 requires github.com/FortAwesome/Font-Awesome@v0.0.0-20230327165841-0698449d50f2: invalid version: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in C:\Users\Administrator\AppData\Local\hugo_cache\modules\filecache\modules\pkg\mod\cache\vcs\a81254f0cf90f611158215d1cb50586eccc323b54ab825bb7e9c8b2580ac9fb3: exit status 128: error: RPC failed; curl 92 HTTP/2 stream 5 was not closed cleanly: CANCEL (err 8) error: 6019 bytes of body are still expected fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fatal: fetch-pack: invalid index-pack outputhugo: collected modules in 182960 msHugo provides its own webserver which builds and serves the site.While hugo server is high performance, it is a webserver with limited options.'hugo server' will by default write and server files from disk, but you canrender to memory by using the '--renderToMemory' flag. This can be fasterin some cases, but it will consume more memory.By default hugo will also watch your files for any changes you make andautomatically rebuild the site. It will then live reload any open browser pagesand push the latest content to them. As most Hugo sites are built in a fractionof a second, you will be able to save and see your changes nearly instantly.Usage: hugo server [command] [flags] hugo server [command]Aliases: server, serveAvailable Commands: trust Install the local CA in the system trust store.Flags: --appendPort append port to baseURL (default true) -b, --baseURL string hostname (and path) to the root, e.g. https://spf13.com/ --bind string interface to which the server will bind (default "127.0.0.1") -D, --buildDrafts include content marked as draft -E, --buildExpired include expired content -F, --buildFuture include content with publishdate in the future --cacheDir string filesystem path to cache directory --cleanDestinationDir remove files from destination not found in static directories -c, --contentDir string filesystem path to content directory --disableBrowserError do not show build errors in the browser --disableFastRender enables full re-renders on changes --disableKinds strings disable different kind of pages (home, RSS etc.) --disableLiveReload watch without enabling live browser reload on rebuild --enableGitInfo add Git revision, date, author, and CODEOWNERS info to the pages --forceSyncStatic copy all files when static is changed. --gc enable to run some cleanup tasks (remove unused cache files) after the build -h, --help help for server --ignoreCache ignores the cache directory -l, --layoutDir string filesystem path to layout directory --liveReloadPort int port for live reloading (i.e. 443 in HTTPS proxy situations) (default -1) --minify minify any supported output format (HTML, XML etc.) --navigateToChanged navigate to changed content file on live browser reload --noBuildLock don't create .hugo_build.lock file --noChmod don't sync permission mode of files --noHTTPCache prevent HTTP caching --noTimes don't sync modification time of files --panicOnWarning panic on first WARNING log --poll string set this to a poll interval, e.g --poll 700ms, to use a poll based approach to watch for file system changes -p, --port int port on which the server will listen (default 1313) --pprof enable the pprof server (port 8080) --printI18nWarnings print missing translations --printMemoryUsage print memory usage to screen at intervals --printPathWarnings print warnings on duplicate target paths etc. --printUnusedTemplates print warnings on unused templates. --renderStaticToDisk serve static files from disk and dynamic files from memory --templateMetrics display metrics about template executions --templateMetricsHints calculate some improvement hints when combined with --templateMetrics -t, --theme strings themes to use (located in /themes/THEMENAME/) --tlsAuto generate and use locally-trusted certificates. --tlsCertFile string path to TLS certificate file --tlsKeyFile string path to TLS key file --trace file write trace to file (not useful in general) -w, --watch watch filesystem for changes and recreate as needed (default true)Global Flags: --clock string set the clock used by Hugo, e.g. --clock 2021-11-06T22:30:00.00+09:00 --config string config file (default is hugo.yaml|json|toml) --configDir string config dir (default "config") --debug debug output -d, --destination string filesystem path to write files to -e, --environment string build environment --ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern --logLevel string log level (debug|info|warn|error) --quiet build in quiet mode --renderToMemory render to memory (mostly useful when running the server) -s, --source string filesystem path to read files relative from --themesDir string filesystem path to themes directory -v, --verbose verbose outputUse "hugo server [command] --help" for more information about a command.Error: command error: failed to load modules: failed to download modules: failed to execute 'go [mod download -modcacherw]': failed to execute binary "go" with args [mod download -modcacherw]: go: github.com/google/docsy@v0.8.0 requires github.com/FortAwesome/Font-Awesome@v0.0.0-20230327165841-0698449d50f2: invalid version: git fetch -f origin refs/heads/*:refs/heads/* refs/tags/*:refs/tags/* in C:\Users\Administrator\AppData\Local\hugo_cache\modules\filecache\modules\pkg\mod\cache\vcs\a81254f0cf90f611158215d1cb50586eccc323b54ab825bb7e9c8b2580ac9fb3: exit status 128: error: RPC failed; curl 92 HTTP/2 stream 5 was not closed cleanly: CANCEL (err 8) error: 6019 bytes of body are still expected fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fatal: fetch-pack: invalid index-pack output *errors.errorString
尝试过的方案,均失败
1、git config --global http.postBuffer 1024M
暂时想不到其他的解决方案
试试这个
git config --global core.compression 0
[cordova] [cordova] FAILURE: Build failed with an exception. [cordova] [cordova] * What went wrong: [cordova] A problem occurred configuring project ':CordovaLib'. [cordova] > Could not resolve all ar
开发eslint自定义规则时,我测试的代码是 <img src='assets/img.png' /> , 运行 yarn run test, 报错说 AssertionError [ERR_ASSERTION]: A fatal parsing error occurred: Parsing error: Unexpected token <, 如下图 是因为解析有问题吗?安装和配置了babel
装了ts的几个依赖就报错了,这是什么错误呢
pull 下来的项目运行时报错,已经确保 node 与 npm 的版本是可以运行的,node_modules 重新安装过多次,检查过配置文件没有发现问题,并且 package.json 下的其他脚本命令都报一样的错 还有 node 没安装在默认目录,不知道是否有影响? 其他脚本命令报错如下 npm run dev 报错日志如下 已经确保 node 与 npm 的版本是可以运行的,node_modu
我想使用puppeteer进行截图,然后使用docker将项目打包成镜像,但运行镜像时报这个错: 我已经执行过它 Dockerfile文件: 截图逻辑: 请问大佬们有遇到过吗?麻烦指点下 执行locate libgobject-2.0.so: 这个是否说明已安装。如果没有安装,请问如何下载libglib,因为我用yum下载不下来 如果说明已安装,我在Dockerfile加入了命令: 但是我重新打包