Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/andres15alvarez/numericalcalculator

Calculator of roots of equations and system of linear algebraic equations.
https://github.com/andres15alvarez/numericalcalculator

numerical-methods numpy python scipy

Last synced: 3 days ago
JSON representation

Calculator of roots of equations and system of linear algebraic equations.

Awesome Lists containing this project

README

        

# Numerical Calculator
Calculator of roots of equations and systems of linear algebraic equations made with Python

## How to install the project

the following softwares are necessary to run the project:
- Python 3.11
- Pip
- Virtualenv

Once all the software are installed you need to create a virtual environment to install the python's libraries.
```
virtualenv venv -p python3.11
```

Activate the virtual environment:
```
source venv/bin/activate
```

Then install the mathematicals and graphicals libraries:
```
pip install -r requirements.txt
```

To run the program execute the followin command:
```
uvicorn main:app
```