- Distributed Computing with Go
- V.N. Nikhil Anurag
- 165字
- 2021-06-24 18:36:06
Package management
In the days of yore, all programs were written from scratch—every utility function and every library to run the code had to written by hand. Now a days, we don't want to deal with the low level details on a regular basis; it would be unimaginable to write all the required libraries and utilities from scratch. Go comes with a rich library, which will be enough for most of our needs. However, it is possible that we might need a few extra libraries or features not provided by the standard library. Such libraries should be available on the internet, and we can download and add them into our project to start using them.
In the previous section, GOPATH, we discussed how all our projects are saved into qualified paths of the $GOPATH/src/git-server.com/user-name/my-go-project form. This is true for any and all dependencies we might have. There are multiple ways to handle dependencies in Go. Let's look at some of them.
- 30天自制操作系統
- 阿里云數字新基建系列:云原生操作系統Kubernetes
- Linux從零開始學(視頻教學版)
- WordPress Mobile Web Development:Beginner's Guide
- 異質結原理與器件
- 深入理解eBPF與可觀測性
- Instant Optimizing Embedded Systems using Busybox
- STM32庫開發實戰指南:基于STM32F4
- 跟老男孩學Linux運維:Shell編程實戰
- Mastering Windows 8 C++ App Development
- OpenStack Essentials(Second Edition)
- 再也不踩坑的kubernetes實戰指南
- 電腦辦公(Windows10+Office2016)從新手到高手
- Python機器學習系統構建(原書第3版)
- STM32庫開發實戰指南