{
  "id": "go/module-not-found",
  "signature": "go: module github.com/user/module@v1.0.0: reading https://proxy.golang.org/github.com/user/module/@v/v1.0.0.mod: 404 Not Found",
  "signature_zh": "go: 模块 github.com/user/module@v1.0.0: 读取 https://proxy.golang.org/github.com/user/module/@v/v1.0.0.mod: 404 未找到",
  "regex": "go:\\ module\\ github\\.com/user/module@v1\\.0\\.0:\\ reading\\ https://proxy\\.golang\\.org/github\\.com/user/module/@v/v1\\.0\\.0\\.mod:\\ 404\\ Not\\ Found",
  "domain": "go",
  "category": "module_error",
  "subcategory": null,
  "root_cause": "The module version does not exist or has been deleted, often due to tag removal after release or incorrect version number.",
  "root_cause_type": "generic",
  "root_cause_zh": "模块版本不存在或已被删除，通常由于模块发布后tag被移除或版本号错误。",
  "versions": [
    {
      "version": "1.16",
      "introduced": null,
      "deprecated": null,
      "removed": null,
      "behavior_change": null,
      "status": "active"
    },
    {
      "version": "1.17",
      "introduced": null,
      "deprecated": null,
      "removed": null,
      "behavior_change": null,
      "status": "active"
    },
    {
      "version": "1.18",
      "introduced": null,
      "deprecated": null,
      "removed": null,
      "behavior_change": null,
      "status": "active"
    }
  ],
  "os_specific": {},
  "dead_ends": [
    {
      "action": "尝试手动下载模块并放入vendor目录",
      "why_fails": "go mod vendor不会自动填充缺失的模块，需要先解决依赖关系。",
      "fail_rate": 0.7,
      "condition": "",
      "sources": []
    },
    {
      "action": "使用go get -u强制更新所有依赖",
      "why_fails": "如果模块版本不存在，更新不会修复缺失的版本。",
      "fail_rate": 0.8,
      "condition": "",
      "sources": []
    }
  ],
  "workarounds": [
    {
      "action": "检查模块版本并更新到正确版本",
      "success_rate": 0.6,
      "how": "go list -m -versions github.com/user/module\n# 如果有可用版本，更新go.mod\nrequire github.com/user/module v1.0.1",
      "condition": "",
      "sources": []
    },
    {
      "action": "使用GONOSUMCHECK和GONOSUMDB绕过代理",
      "success_rate": 0.4,
      "how": "export GONOSUMCHECK=*; export GONOSUMDB=*; go get github.com/user/module@v1.0.0",
      "condition": "",
      "sources": []
    }
  ],
  "workarounds_zh": [],
  "transition_graph": {
    "leads_to": [],
    "preceded_by": [],
    "frequently_confused_with": []
  },
  "official_doc_url": null,
  "official_doc_section": null,
  "error_code": null,
  "verification_tier": "ai_generated",
  "confidence": 0.85,
  "fix_success_rate": 0.8,
  "resolvable": "true",
  "first_seen": "2024-03-12",
  "last_confirmed": "2025-01-01",
  "last_updated": "2025-01-01",
  "evidence_count": 0,
  "tags": [],
  "locale": "en",
  "aliases": []
}