- Secret Recipes of the Python Ninja
- Cody Jackson
- 82字
- 2021-06-25 22:14:42
Creating wheels and bundles
pip wheel allows the developer to bundle all project dependencies, along with any compiled files, into a single archive file. This is useful for installing when index servers aren't available, and eliminates recompiling code. However, recognize that compiled packages are normally OS- and architecture-specific, as they are normally C code, meaning they are generally not portable across different systems without recompiling. This is also a good use of hash-checking to ensure future wheels are built with identical packages.
推薦閱讀
- 零起步玩轉掌控板與Mind+
- Java異步編程實戰
- Pandas Cookbook
- Java程序設計與實踐教程(第2版)
- Mastering Android Development with Kotlin
- Active Directory with PowerShell
- 用戶體驗可視化指南
- Procedural Content Generation for C++ Game Development
- Kotlin開發教程(全2冊)
- C++ Fundamentals
- 創意UI:Photoshop玩轉APP設計
- TypeScript圖形渲染實戰:2D架構設計與實現
- C# 10核心技術指南
- Kotlin程序員面試算法寶典
- PHP典型模塊與項目實戰大全