- Distributed Computing with Go
- V.N. Nikhil Anurag
- 165字
- 2021-06-24 18:36:06
glide
The glide is one of the most widely used package management tool in Go community. It addresses the limitations of go get, but it needs to be installed manually by the developer. The following is a simple way to install and use glide:
$ curl https://glide.sh/get | sh $ mkdir new-project && cd new-project $ glide create $ glide get github.com/last-ent/skelgor # A helper project to generate project skeleton. $ glide install # In case any dependencies or configuration were manually added. $ glide up # Update dependencies to latest versions of the package. $ tree . ├── glide.lock ├── glide.yaml └── vendor └── github.com └── last-ent └── skelgor ├── LICENSE ├── main.go └── README.md
In case you do not wish to install glide via curl and sh, other options are available and described in better detail on the project page, available at https://github.com/masterminds/glide.
推薦閱讀
- Learning OpenDaylight
- Ansible權威指南
- 蘋果電腦玩全攻略 OS X 10.8 Mountain Lion
- 構建可擴展分布式系統:方法與實踐
- Mastering KVM Virtualization
- 循序漸進學Docker
- Linux自動化運維:Shell與Ansible(微課版)
- 嵌入式實時操作系統:RT-Thread設計與實現
- Windows Server 2012網絡操作系統項目教程(第4版)
- Hands-On UX Design for Developers
- Kali Linux高級滲透測試
- Cassandra 3.x High Availability(Second Edition)
- Windows Server 2008組網技術與實訓(第3版)
- 鴻蒙HarmonyOS手機應用開發實戰
- 辦公自動化教程(Windows7+Office2010)