You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

467 B

Development

ollama is built using Python 3 and uses Poetry to manage dependencies and build packages.

pip install poetry

Install ollama and its dependencies:

poetry install --extras server --with dev

Run ollama server:

poetry run ollama server

Update dependencies:

poetry update --extras server --with dev
poetry lock
poetry export >requirements.txt

Build binary package:

poetry build