DEV Community

Discussion on: Python Checklist: Publishing a package to PyPi

Collapse
 
themayurkumbhar profile image
MAYUR KUMBHAR

Is it possible to do it on local without uploading to pypi?

Collapse
 
prahladyeri profile image
Prahlad Yeri

Sure, just skip everything from point number 5. Instead, just install your locally generated package (*.tar.gz) using pip!

pip install <your-package>-1.0.0.tar.gz
Enter fullscreen mode Exit fullscreen mode

You can even publish this package as a binary setup file on github or just email it to your friends to keep it local.