Skip to content

Instantly share code, notes, and snippets.

@noromanba
Last active June 6, 2026 17:20
Show Gist options
  • Select an option

  • Save noromanba/7e059a67cfef3a048d81b9e11aa1c5c6 to your computer and use it in GitHub Desktop.

Select an option

Save noromanba/7e059a67cfef3a048d81b9e11aa1c5c6 to your computer and use it in GitHub Desktop.
backup pip packages and version
#!/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