From 4db5ededbe82b0169015852779ed893c5b634201 Mon Sep 17 00:00:00 2001 From: klei22 Date: Thu, 14 Jul 2022 00:36:04 -0700 Subject: [PATCH] Update install instructions from to `go install` Looks like `go get` has been deprecated. New method for installation is `go install @latest` In this case: ```sh go install github.com/qeesung/image2ascii@latest ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f45f2d1..b715d0b 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Image2ASCII is a library that converts images into ASCII images and provides com ## Installation ```bash -go get github.com/qeesung/image2ascii +go install github.com/qeesung/image2ascii@latest ``` ## CLI usage -- 2.45.2