File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,25 +20,25 @@ Before you begin, make sure you have the following installed on your system:
2020
21211 . ** Clone the Repository** :
2222
23- ``` bash
24- git clone https://github.com/humbhenri/pyOthello.git
25- cd pyothelo
26- ```
23+ ``` bash
24+ git clone https://github.com/humbhenri/pyOthello.git
25+ cd pyothelo
26+ ```
2727
28282 . ** Set Up a Virtual Environment** (optional but recommended):
2929
30- ` ` ` bash
31- python -m venv env
32- source env /bin/activate
33- ` ` `
30+ ``` bash
31+ python -m venv .venv
32+ source .venv /bin/activate
33+ ```
3434
35353 . ** Install Dependencies** :
3636
37- Install the required Python packages, including Pygame:
37+ Install the required Python packages, including Pygame:
3838
39- ` ` ` bash
40- python -m pip install -r requirements.txt
41- ` ` `
39+ ``` bash
40+ python -m pip install -r requirements.txt
41+ ```
4242
4343## Running the Game
4444
@@ -48,5 +48,13 @@ After installing the dependencies, you can run the game using the following comm
4848python othello.py
4949```
5050
51+ ### Running with nix
52+
53+ ``` bash
54+ nix-shell
55+ python othello.py
56+ ```
57+
5158## License
59+
5260GPL
You can’t perform that action at this time.
0 commit comments