# Installation ## Stable release You will need an environment with the following packages: * Python >3.11 * NumPy (Latest Package) * Matplotlib (Latest Package) Once these packages have been installed via pip, the montecarlo package can be installed into the same environment with ```sh pip install -e . ``` from the top-level montecarlo/ directory. ## From source The source files for montecarlo can be downloaded from the [Github repo](https://github.com/PaladinBIGDan2077/QS1_Sp26_MonteCarlo). Note: Python 3.11 or newer is required, along with NumPy and Matplotlib! You can either clone the public repository: ```sh git clone https://github.com/PaladinBIGDan2077/QS1_Sp26_MonteCarlo.git ``` Once you have a copy of the source, you can install it with: ```sh cd QS1_Sp26_MonteCarlo pip install -e . ```