https://github.com/netherquartz/snake
My wonderful Snake game
https://github.com/netherquartz/snake
game linux-game retrogaming snake snake-game snakegame terminal-game
Last synced: about 2 months ago
JSON representation
My wonderful Snake game
- Host: GitHub
- URL: https://github.com/netherquartz/snake
- Owner: NetherQuartz
- License: gpl-3.0
- Created: 2019-07-13T18:08:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-03T18:34:24.000Z (almost 7 years ago)
- Last Synced: 2025-12-28T02:49:48.282Z (6 months ago)
- Topics: game, linux-game, retrogaming, snake, snake-game, snakegame, terminal-game
- Language: C++
- Size: 117 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Snake
My wonderful Snake game
# How to install
## On Debian (Ubuntu, Linux Mint, etc.)
```
sudo apt install gcc
sudo apt install g++
sudo apt install make
sudo apt install git
```
Then `cd` to any directory, e.g. `cd ~/Documents` and then do
```
git clone https://github.com/NetherQuartz/Snake.git
cd Snake
make
./snake
```
Snake will run immediately and you will be able to get some rest by playing your favorite game!
## On Windows 10
Download Ubuntu from Microsoft Store and see previous section ¯\\\_(ツ)\_/¯.
## On macOS
You need g++ or clang installed. There are many ways to download them, e.g. install Xcode from App Store. Then install git, `cd` to any directory, e.g. `cd ~/Documents` and type
```
git clone https://github.com/NetherQuartz/Snake.git
cd Snake
make
./snake
```
Snake will start immediately and you will be able to play it!
# How to uninstall
Don't do this, really, but if you thought it over well and really decided to delete this wonderfull game, then just ```cd``` to your `Snake/..` folder and `rm -r Snake` there.