-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added notice and made things a bit clearer.
- Loading branch information
1 parent
ec3f409
commit 6bd5d11
Showing
1 changed file
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,46 +6,55 @@ This is a collection of short text-based games written in python. | |
## What's Fronteria? | ||
Fronteria is the mythical world fulled with tech, big corporations, and the urge for everyone to get more money... | ||
|
||
## IMPORTANT NOTICE: | ||
I ran it on my Raspberry Pi ,and it did not work using Python 2. It only runs in Python 3. I will fix as soon as possible. | ||
|
||
## So how do I play? | ||
|
||
### Linux/Mac OSX | ||
If you do not have git installed you might want to run: | ||
|
||
```bash | ||
|
||
pi@raspberry ~ $sudo apt-get install git | ||
pi@raspberry ~ $ sudo apt-get install git | ||
|
||
``` | ||
|
||
All right, your computer probably has git pre-installed (if it's smart!), so you possibly don't need to do that. | ||
|
||
Ok, with that out of the way, we can first make sure we are in the home folder. | ||
|
||
```bash | ||
|
||
pi@raspberry ~ $cd ~ | ||
pi@raspberry ~ $ cd ~ | ||
|
||
``` | ||
|
||
Now we can pull this repo from github. | ||
Now we can pull this repo (repository) from github. | ||
|
||
```bash | ||
|
||
pi@raspberry ~ $git clone [email protected]:kriekprinsloo/frontaria_games.git | ||
pi@raspberry ~ $ git clone [email protected]:kriekprinsloo/frontaria_games.git | ||
|
||
``` | ||
|
||
When it's done, change your directory to fronteria_games, like this: | ||
|
||
```bash | ||
|
||
pi@raspberry ~ $cd fronteria_games | ||
pi@raspberry ~ $ cd fronteria_games | ||
|
||
``` | ||
|
||
And run a game with python | ||
|
||
```bash | ||
|
||
pi@raspberry ~ $python name_of_game.py | ||
pi@raspberry ~ $ python name_of_game.py | ||
|
||
``` | ||
### Windows | ||
|
||
Still have to figure out how! | ||
|
||
And there you go! Have fun! |