- 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.
推薦閱讀
- 電腦組裝與系統(tǒng)安裝
- Linux操作系統(tǒng)基礎
- 大學計算機應用基礎實踐教程(Windows 7+Office 2013)
- Learning Android Intents
- vSphere Virtual Machine Management
- Linux性能優(yōu)化
- 精解Windows8
- 高性能Linux服務器構建實戰(zhàn):系統(tǒng)安全、故障排查、自動化運維與集群架構
- Kubernetes從入門到實踐
- Moodle 3.x Teaching Techniques(Third Edition)
- Learning Magento 2 Administration
- 一學就會:Windows Vista應用完全自學手冊
- Multi-Cloud for Architects
- 嵌入式微系統(tǒng)
- Android應用性能優(yōu)化最佳實踐