pocket-friends/README.md

42 lines
1.6 KiB
Markdown
Raw Permalink Normal View History

2021-05-29 18:28:33 -04:00
![Pocket Friends](https://gitea.citruxx.com/ndyer/pocket-friends/raw/branch/master/pocket_friends/resources/images/promotional.png)
2021-05-29 18:28:33 -04:00
[![License: GNU GPL v3.0](https://img.shields.io/badge/license-GNU%20GPL%20v3.0-blue)](LICENSE)
Pocket Friends is a game where you raise your own little pocket friend! These pocket friends, called bloops, are great little companions to have! You can feed them, play with them, and watch them grow up!
2021-05-29 18:37:34 -04:00
2023-01-26 15:05:21 -05:00
~~You can download the latest release of Pocket Friends on the [releases page.](https://gitea.citruxx.com/ndyer/pocket-friends/releases)~~
There are currently no releases of the game. To install the current version on GitHub, follow the instructions below.
---
## Installing From Source
2021-05-29 23:22:01 -04:00
Requirements:
- Python 3.7
2021-05-29 23:22:01 -04:00
- Pip
- Git
2021-05-29 23:22:01 -04:00
All you need to do to install Pocket Friends is install it with pip and you're good to go!
2023-01-26 15:05:21 -05:00
`pip install git+https://gitea.citruxx.com/ndyer/pocket-friends.git`
Now that the game is installed, just run it like you would any other Python program.
`python -m pocket_friends`
2021-05-29 22:44:07 -04:00
...and that's it! You now have the latest dev build of Pocket Friends installed on your system!
## Building for Windows
If you wish to build this version of Pocket Friends for Windows, you will need the same
requirements as to install it to your system from source. After you have done that,
issue the following:
```
2023-01-26 15:05:21 -05:00
git clone https://gitea.citruxx.com/ndyer/pocket-friends.git
cd pocket-friends
pip install -r requirements.txt
pip install pyinstaller
python compile.py
```
The compiled executable will then be in the `pocket-friends\dist` directory.