TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Making large Python projects painless

4 pointsby ndirish1842about 9 years ago

2 comments

neuroidabout 9 years ago
<i>Even though we had pinned all our dependencies (with requirements like package-x==1.2.3), pip would still reach out to PyPI before before deciding which version to pick.</i><p>Another solution for this would be to build wheels for all dependencies and invoke pip with --no-index -f <a href="https:&#x2F;&#x2F;url.to.wheels" rel="nofollow">https:&#x2F;&#x2F;url.to.wheels</a>.
BerislavLopacabout 9 years ago
So this is basically Conda?