【问题标题】:CalledProcessError with git pre-commit hook带有 git pre-commit 钩子的 CalledProcessError
【发布时间】:2021-03-19 09:16:07
【问题描述】:

我在安装预提交挂钩时遇到了麻烦。根据下面的错误,钩子安装在C:\\Users\\dangler\\.cache\\pre-commit\\repoith5dg7x\\py_env-default\\Scripts\\python.EXE 目录中找不到python exe(该文件夹中不存在python.EXE...应该吗?)。在过去的几个小时里,我一直在尝试解决它,但无济于事。希望有一个解决方案,也许我已经为它搜索了不正确的地方。

(fiddle-env) PS C:\Users\dangler\Documents\projects\fiddle> pre-commit clean
(fiddle-env) PS C:\Users\dangler\Documents\projects\fiddle> pre-commit install
(fiddle-env) PS C:\Users\dangler\Documents\projects\fiddle> git commit -am "README file with links"
[INFO] Installing environment for https://github.com/pre-commit/pre-commit-hooks.
[INFO] Once installed this environment will be reused.
[INFO] This may take a few minutes...
An unexpected error has occurred: CalledProcessError: command: ('C:\\Users\\dangler\\.cache\\pre-commit\\repookmqanwy\\py_env-default\\Scripts\\python.EXE', '-mpip', 'install', '.')
return code: 3221225781
expected return code: 0
stdout: (none)
stderr: (none)
Check the log at C:\Users\dangler\.cache\pre-commit\pre-commit.log

.pre-commit-config.yml 文件是这样的:

repos:
-   repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v2.4.0
    hooks:
        -   id: double-quote-string-fixer
        -   id: check-added-large-files
        -   id: check-ast
        -   id: check-json
        -   id: check-yaml
        -   id: end-of-file-fixer
        -   id: no-commit-to-branch
        -   id: fix-encoding-pragma
        -   id: trailing-whitespace
-   repo: https://github.com/pre-commit/mirrors-autopep8
    rev: 'v1.4.4'  # Use the sha / tag you want to point at
    hooks:
        -   id: autopep8

【问题讨论】:

    标签: git conda pre-commit-hook pre-commit pre-commit.com


    【解决方案1】:

    我能够通过使用以下命令降级虚拟环境来解决此问题:

    pip install virtualenv==20.0.33
    

    然后安装预提交挂钩。更多信息:

    https://github.com/ContinuumIO/anaconda-issues/issues/12094#issuecomment-708557750

    【讨论】:

      猜你喜欢
      • 2017-05-15
      • 2014-02-15
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-05-21
      • 2019-01-08
      • 1970-01-01
      • 2019-11-26
      相关资源
      最近更新 更多