File Not Found when restoring Cache

Found a cache from build 2569 at v1-deps-1ZC8K+1iuexsuayiPa45iQ4tOG6vMve+ki6ieMMVdZI=
Size: 30 MiB
Cached paths:

  • /home/circleci/project/venv

Downloading cache archive…
Validating cache…
Download duration for cache file /tmp/cache560652732: 1.545827048s

Unarchiving cache…
Extraction duration for v1-deps-{{ checksum “requirements_test.txt” }}: 1.7600484s

Error: [Errno 2] No such file or directory: ‘/home/circleci/project/venv/bin/python3’

Exited with code exit status 1

  • save_cache:
    name: Save Cache
    key: v1-deps-{{ checksum “requirements_test.txt” }}
    paths:
    - “venv”

  • restore_cache:
    name: Restore Cache
    key: v1-deps-{{ checksum “requirements_test.txt” }}

This past thread may provide an answer depending on what else is being done within your script.

Without seeing your config.yml it is not possible to add much as most issues with the cache sub-system come from the interaction between different parts of the config.yml.