My very first text-based paragraph game. A story about a crewman of Epsilon IV ship who wakes up in the middle of a disaster.
I'm using Ubuntu WSL with pyenv
.
-
Install WSL.
wsl --install Ubuntu
All steps are now done inside WSL.
-
Install
pyenv
- https://github.com/pyenv/pyenv#installation. -
Install Python 3.11.6.
pyenv install 3.11.6
-
(Optional) Create virtualenv.
pyenv virtualenv 3.11.6 fte
-
Clone repository and
cd
into.git clone [email protected]:AnonymousX86/fix-the-engines.git
cd fix-the-engines
-
Set local version.
-
With virtualenv:
pyenv local fte
-
Without virtualenv:
pyenv local 3.11.6
-
-
Install requirements (from
requirements.txt
).pyenv exec pip install -r requirements.txt
-
Run the game.
pyenv exec python -OOm FTE