Last active
June 6, 2026 17:20
-
-
Save noromanba/7e059a67cfef3a048d81b9e11aa1c5c6 to your computer and use it in GitHub Desktop.
backup pip packages and version
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # backup pip packages and version | |
| # @version 2026.6.5.0 | |
| # @license CC0 Univ PD https://creativecommons.org/publicdomain/zero/1.0/ | |
| # @author noromanba https://noromanba.github.io | |
| # require uv | |
| requirements="$HOME"/requirements.txt | |
| # avoid `uv pip freeze` | |
| # c.f. | |
| # https://gist.github.com/noromanba/d2b7472bc8cba64f8b98c0069826764d | |
| uv pip list --format=freeze | | |
| tee "$requirements" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment