.. _setup: ******************** Installation/setup ******************** - Install pycro-manager using ``pip install pycromanager`` - Download and install Micro-Manager, either by manually downloading a nightly build of `Micro-Manager 2.0 `_, or programmatically using the :ref:`installation api ` function: .. code-block:: python from mmpycorex import download_and_install_mm download_and_install_mm() - Open Micro-Manager, select **tools-options**, and check the box that says **Run server on port 4827** (you only need to do this once) Verify that installation worked ################################ Run the following code: .. code-block:: python from pycromanager import Core core = Core() print(core) which will give an output like: .. code-block:: python