1
0
Fork 0
mirror of https://github.com/HACKERALERT/Picocrypt.git synced 2024-09-20 01:36:55 +00:00
Picocrypt/cli/README.md

15 lines
615 B
Markdown
Raw Normal View History

2023-04-12 01:36:02 +00:00
Work in progress
2023-04-12 01:39:39 +00:00
# Installation
If you don't have Go installed, download it from <a href="https://go.dev/dl/">here</a> or install it from your package manager (`apt install golang-go`). The latest version of Go is recommended, although you may fall back to Go 1.19 should any issues arise in the future. Once Go is installed, run the command below:
```bash
go install github.com/HACKERALERT/Picocrypt/cli/picocrypt@latest
```
2023-04-12 02:10:24 +00:00
You should now be able to run `picocrypt` in your terminal. If you can't, try adding Go's `bin` directory to your PATH:
```bash
export PATH=$PATH:$(go env GOPATH)/bin
```