mmcore doc 0.1 Help

Installation

Before we begin, ensure that the mmcore library is installed.

Docker

  1. Preferred method of installation is docker.

    docker pull ghcr.io/contextmachine/mmcore:main
  2. Now you can use dev-container with `mmcore` during development. Or build images of your own applications and services for production.

Poetry

  1. The second fine way of installing it, assuming you're using poetry.

    Add mmcore in project dependencies

    poetry add git+https://github.com/contextmachine/mmcore.git
  2. And then just install using poetry.

    poetry install
  3. Now you can import it.

    import mmcore print(mmcore.__version__())

Pip

  1. Also, you can install it using pip.

    python3 -m pip install git+https://github.com/contextmachine/mmcore.git
  2. Now you can import it.

    import mmcore print(mmcore.__version__())
Last modified: 25 March 2024