From 213738dbc71cff7412f8dae6d9f27ce4c379dc38 Mon Sep 17 00:00:00 2001 From: Caleb Bassi Date: Tue, 9 Apr 2019 09:35:18 -0700 Subject: [PATCH] Add installation instructions for dep --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8ea1ff2..9ab7776 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,9 @@ termui is a cross-platform and fully-customizable terminal dashboard and widget ## Installation -If using Go 1.11 modules, it is not necessary to `go get` termui, since Go will automatically download any imported dependencies. However, do note that you have to include `/v3` at the end of the URL and before any sub-packages in the termui import statements as shown in the 'Hello World' example below. +Go modules: It is not necessary to `go get` termui, since Go will automatically download any imported dependencies. Do note that you have to include `/v3` at the end of the URL and before any sub-packages in the termui import statements as shown in the 'Hello World' example below. + +Dep: termui can be added with Dep using `dep ensure -add github.com/gizak/termui` but the `/v3` needs to be *removed* from all import statements. ## Hello World