# Installation ## Python version support Insolver is currently available in Python, and installation has been tested in virtual environments for the Python releases 3.8, 3.9, 3.10 and 3.11 on Linux, macOS, and Windows. ## Install from GitHub Insolver installation is available directly from [GitHub repository](https://github.com/MindSetLib/Insolver) with pip. ```shell pip install "git+https://github.com/MindSetLib/Insolver.git" ``` ## Install from PyPI Insolver can be installed via pip from [PyPI](https://pypi.org/project/insolver/). There are several installation options available: | Description | Command | |--------------------------------------------|-------------------------------| | Regular installation | `pip install insolver` | | Installation with all heavy requirements | `pip install insolver[full]` | | Installation with development requirements | `pip install insolver[dev]` |