Editing Installing Private Python Packages Hosted on GitHub
Revision as of 15:50, 22 July 2023 by Video8 (talk | contribs) (Created page with "== Overview == Use pip and virtual environments to install private python packages hosted on GitHub. == Workflow == === Installing packages === Add the package to either `requirements-to-install.txt` or `requirements.txt`: <syntaxhighlight lang="txt"> git+https://github.com/johnf1004/my_package.git </syntaxhighlight> Install with pip: <syntaxhighlight lang="bash"> $ pip install -r requirements-to-install.txt --upgrade </syntaxhighlight> At this point, validation...")
Warning: You are editing an out-of-date revision of this page.
If you publish it, any changes made since this revision will be lost.
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.