How to install your personal module/package on site.

Cameron Simpson cs at cskk.id.au
Thu Aug 20 19:49:52 EDT 2020


On 16Aug2020 08:32, Marco Sulla <Marco.Sulla.Python at gmail.com> wrote:
>Sorry, didn't read well, Apart the other suggestion, you (or your
>sysop) can create a private Pypi:
>https://pypi.org/project/private-pypi/

Even simpler, you can put a code repo path into your requirements.txt 
(or directly with pip via its "-e" option). Example from a project 
requirements.txt file:

    -e git+https://github.com/SpectraLogic/ds3_python3_sdk.git@v5.0.3#egg=ds3-sdk

So if you've an work internal service for your revision control you can 
pull directly from that with pip. Note that the above example pulls a 
particular tagged release via the "@5.0.3" suffix.

Cheers,
Cameron Simpson <cs at cskk.id.au> (formerly cs at zip.com.au)


More information about the Python-list mailing list