简体   繁体   中英

CalledProcessError with git pre-commit hook

I'm hitting a snag installing pre-commit hooks. Based on the error below, the hook installation cannot find a python exe in the directory C:\\Users\\dangler\\.cache\\pre-commit\\repoith5dg7x\\py_env-default\\Scripts\\python.EXE (python.EXE doesn't exist in that folder... should it?). I've been trying to trouble shoot it for the past few hours, to no avail. Hoping a solution exists for this, and perhaps I've searched incorrect places for it.

(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

The .pre-commit-config.yml file is this:

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

I was able to resolve this by downgrading the virtual environment with this command:

pip install virtualenv==20.0.33

then installing the pre-commit hooks. More info:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM