brianstrauch/solitaire-tui

Add instructions on how to run

Closed this issue · 4 comments

cmauf commented

Add instructions on how to run to README.md

The README includes the following command:

go install github.com/brianstrauch/solitaire-tui@latest

You should be able to install the game with that command after downloading and setting up Go 1.19! Then type solitaire-tui from your terminal and it should run. Let me know if you need help!

cmauf commented

I installed it using the command you mentioned. But typing solitaire-gui just yields [command](zsh: command not found: solitaire-tui) I'm on Manjaro 5.15

The binary should have been installed to ~/go/bin/solitaire-tui - drop the following line to your ~/.bashrc to alter your PATH variable after the next shell relaunch:

export PATH="$PATH:~/go/bin"
cmauf commented

Did not work with the instructions you gave, but I created an alias in my .zshrc that runs the executable. Thanks for your help!

Point still stands that some instructions in the README would be nice 😄