An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

Parchis Probabilities


Github top language

Github language count

Repository size

License




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

 

Back to top