Installation
How to install NimbusImage
If you really want to install NimbusImage yourself, you can :). Before getting into the details of installation, it's important to understand the structure of NimbusImage. The front end and back end are two completely independent components. The web application lives on the front end, while all your data and analyses reside in the back end. You can mix and match almost any front end with any back end. For example, you could use nimbusimage.com for the front end and run the back end on your local laptop or vice versa. We here provide instructions for installing both, but again, the easiest option is to simply use the online version.
A good halfway point (if you must) is to use the front end provided by nimbusimage.com along with your own back end. That way, your data lives on your own computer, in case that is important to you.
Installing the back end
The back end is a data management system called Girder, which is developed by Kitware. You can install it fairly easily using Docker. Keep in mind that Docker on Mac is really slow for various reasons, so we strongly recommend using Linux. Also, some workers that require GPUs, like cellpose for cell segmentation, need a Linux system with a GPU.
To install the backend, first you need to install Docker.
Linux:
Install using the apt-repository. Follow these instructions. Then follow these post-install instructions.
If you want to use GPU workers, you will need to install CUDA. Make sure your GPU driver is installed (probably need 535 or higher).
Then install the Nvidia Docker toolkit.
Wasn't that easy? I hate Linux. Also, you will probably have to restart your computer at least once by now.
Mac:
Install using the Docker app.
Now install the backend using Docker:
Pull the NimbusImage repository to install Girder:
Pull the worker repository to install workers:
You should now be able to see the backend at http://localhost:8080. You can login with login "admin" and password "password". We strongly recommend changing those defaults ASAP!
Installing the front end
To install the frontend, you need to:
Install node.js.
Pull the repository (if you haven't already):
Run the following commands:
If you are on Linux, you may need to run:
Copy in the models for Segment Anything (optional):
Now start up the server:
If you want to run the development build:
If you want to run for production:
You should see a bunch of things, including somewhere "localhost:8081" or "localhost:5173"
Go to http://localhost:8081 or http://localhost:5173 and you should see the website! Be sure to set your Girder domain to http://localhost:8080 when you are logging in.
Last updated