May I ask why? pip cache is not found
See original GitHub issuejobs:
build:
runs-on: ${{ matrix.os }}
environment: build
permissions:
contents: write
strategy:
matrix:
os: [ macos-12 ]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-python@v4
with:
python-version: '3.9'
architecture: "x64"
cache: 'pip'
- run: |
pip install -r requirements.txt
There is no cache for each build
I don’t know why. Every build indicates that there is no cache
Issue Analytics
- State:
- Created a year ago
- Comments:15 (3 by maintainers)
Top Results From Across the Web
Why is my pip cache not found? - Atlassian Community
Adding pip as a cache to a step designates it as both producing AND consuming the dependency. The second step was configured with...
Read more >pip uses incorrect cached package version, instead of the user ...
Since pip 6.0 (back in 2014!), pip install , pip download and pip wheel commands can be told to avoid using the cache...
Read more >cache/pip disabled immediately after instalation of pip
The directory '/home/administrator/. cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. ...
Read more >pip cache - pip documentation v22.3.1
Inspect and manage pip's wheel cache. Subcommands: ... <pattern> can be a glob expression or a package name. Options#.
Read more >Python caching in GitHub Actions - AI2 Blog
Luckily there's a simple way to improve this: instead of caching the pip cache, we can just cache the entire Python environment, which...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I have understood the reason. Thank you very much for your help
Thank you very much for your answer. I’m reading the information you sent