Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
franktankbank
3 days ago
|
parent
|
context
|
favorite
| on:
Ask HN: Best practice to distribute private Python...
I'd build it around pip and just accept that your users will have to install python and do the one-time pip install. Just do
pip install <package_name> -U
to get the latest.
oulipo
3 days ago
[–]
Then I guess I might as well expect them to use `uv` and use `uv tool`
reply
franktankbank
3 days ago
|
parent
[–]
Yea, sorry I'm not too familiar with uv yet, but sounds like it could work well. The latest would be installed each invocation. The trick though would be pointing to your private pip repository.
reply
Consider applying for YC's Spring batch! Applications are open till Feb 11.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
pip install <package_name> -U
to get the latest.