Skip to content

Instantly share code, notes, and snippets.

@erenmustafaozdal
erenmustafaozdal / install_python_package_git.md
Created March 2, 2024 21:05 — forked from chhantyal/install_python_package_git.md
Pipenv or pip Install Python package from Git (Github, Gitlab, Bitbucket etc.) and using Git tag for versioning. Works for branches too.

Install from Git tag

pipenv install git+ssh://git@github.com/chhantytal/parquet-cli.git@v1.1#egg=parq

Install from branch name

pipenv install git+ssh://git@github.com/chhantytal/parquet-cli.git@master#egg=parq

Works for pip as well.