https://github.com/leandro-bertoluzzi/parchis-probabilities
Small weekend project to play around with numpy and help me taking decissions while playing parchís
https://github.com/leandro-bertoluzzi/parchis-probabilities
matplotlib numpy python
Last synced: about 2 months ago
JSON representation
Small weekend project to play around with numpy and help me taking decissions while playing parchís
- Host: GitHub
- URL: https://github.com/leandro-bertoluzzi/parchis-probabilities
- Owner: Leandro-Bertoluzzi
- License: mit
- Created: 2022-09-26T00:24:45.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-05T02:37:57.000Z (over 2 years ago)
- Last Synced: 2024-11-10T09:35:14.493Z (3 months ago)
- Topics: matplotlib, numpy, python
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Parchis Probabilities
About |
Features |
Technologies |
Requirements |
Starting |
License |
Author
## :dart: About ##
A little research made on how probable it is to move a given amount of steps in a row while playing "Parchís" --> [More info](https://en.wikipedia.org/wiki/Parch%C3%ADs).
## :rocket: Technologies ##
The following tools were used in this project:
- [Matplotlib](https://matplotlib.org/)
- [Numpy](https://numpy.org/)## :checkered_flag: Starting ##
```bash
# Clone this project
$ git clone https://github.com/Leandro-Bertoluzzi/parchis-probabilities# Access
$ cd parchis-probabilities# (Optional, but recommended) Create a virtual environment
# (Option 1) With Python's venv
python -m venv venv
pip install -r requirements.txt# (Option 2) With Conda
conda env create -f environment.yml
conda activate parchis# Run a script
$ python one-row.py
```If you chose to create the virtual environment using venv, you shall activate it following the instructions according to your OS in [Official venv docs](https://docs.python.org/3.9/library/venv.html).
## :memo: License ##
This project is under license from MIT. For more details, see the [LICENSE](LICENSE.md) file.
Made with :heart: by Leandro Bertoluzzi