From 2bbd68561eb8d069b8e360d2cf07561fc3798633 Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Sun, 23 Feb 2025 16:30:04 +0200 Subject: [PATCH] first commit --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..ff3cf51 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +# github_packages + +## Requirements + +## Installation + +### Linux + +To install for example in your ~/.local/bin folder: +```bash +./install.sh --destination ~/.local/bin +``` + +To install system-wide: +```bash +sudo ./install.sh --destination /usr/local/bin +``` + +Change your configuration file in "${HOME}/.config/github_packages.conf" (see the example in the config folder). + +### Windows (from PowerShell) + +Ensure you have "C:\Users\${env:USERNAME}\AppData\Roaming\Python\Python${python_version}\Scripts\" in your Path environment variable. + + ```powershell +& $(where.exe pip).split()[0] install . +``` + +## Usage + + ```bash +github_packages.sh [--debug-level|-d CRITICAL|ERROR|WARNING|INFO|DEBUG|NOTSET] # Other parameters +```