Getting Started#
The getting started guide aims to get you using mento productively as quickly as possible.
Installation#
Install with pip#
You can install Mento via pip, the Python package manager. Simply run the following command in your terminal:
pip install mento
This will install the latest stable version of the Mento package, along with any necessary dependencies.
Try Mento without installation (Google Colab)#
If you don’t have Python installed or want to quickly try Mento, you can use Google Colab:
Open Google Colab: Go to https://colab.research.google.com/
Create a new notebook: Click “File” > “New notebook”
Install Mento: In the first cell, paste and run this command:
!pip install mento
Use Mento: In the next cell, import the package and run an example from the documentation:
You can find detailed examples in the Examples section of the documentation:
Beam Summary
Rectangular Beam Check
Run your code: Press Shift + Enter to execute each cell
Note
Google Colab provides free access to Python runtime with all dependencies, so you can test Mento without any local setup.