Skip to content
This repository has been archived by the owner on Nov 26, 2023. It is now read-only.

Latest commit

 

History

History
242 lines (130 loc) · 7.25 KB

installation.rst

File metadata and controls

242 lines (130 loc) · 7.25 KB

Installation

Mesmerize can be installed on Linux, Mac OSX and Windows. On Windows, Mesmerize can be installed in an anaconda environment. For Mac OSX and Linux you may use either virtual environments or conda environments, but we have had much better experience with virtual environments.

Linux

The snap is currently discontinued in favor of a pypi package.

pip (PyPI)

You will need python==3.6, there is a bug with Qt & python3.7

  1. Install python 3.6:

    # Debian & Ubuntu based
    sudo apt-get install python3.6
    
    # Fedora/CentOS
    sudo dnf install python36
  2. Install build tools and other dependencies:

    # Debian & Ubuntu based distros
    sudo apt-get install build-essential python3-devel qt5-default tcl graphviz git
    
    # Fedora/CentOS
    sudo dnf install @development-tools
    sudo dnf install python3-devel tcl graphviz

For other distributions install the equivalent meta package to get build tools.

If you're on Fedora/CentOS you'll also need redhat-rpm-config, install using:

sudo dnf install redhat-rpm-config
  1. Create a new virtual environment:

    python3.6 -m venv <new_venv_path>
  2. Activate this environment:

    source <new_venv_path/bin/activate>
  3. Make sure you have a recent version of pip and setuptools:

    pip install --upgrade pip setuptools
  4. Install tslearn & bottleneck (optional):

    pip install tslearn~=0.2.2 bottleneck==1.2.1
  5. Install mesmerize:

    pip install mesmerize
  6. Now you should be be able to launch mesmerize from the terminal:

    mesmerize

You will always need to activate the environment for Mesmerize before launching it.

  1. If you want Caiman features you'll need to install caiman into this environment:

    git clone https://github.com/flatironinstitute/CaImAn
    cd CaImAn/
    source activate caiman
    pip install .

More information on caiman installation: https://caiman.readthedocs.io/en/master/Installation.html#installation-on-macos-and-linux

Mac OSX

This requires Anaconda and will install Mesmerize in an Anaconda environment. If you want to install into a python virtual environment use the instructions for the Linux installation from step #3 onward. Tested on macOS Catalina 10.15.1

Download Anaconda for Python 3: https://www.anaconda.com/distribution/

First make sure you have xcode:

xcode-select --install

This might take a while.

Create an environment & install Mesmerize

  1. Create a new environment using python 3.6:

    conda create --name mesmerize python=3.6
  2. Enter the environment:

    source activate mesmerize
  3. Install caiman for Caiman features:

    conda install -c conda-forge caiman
  4. Install Mesmerize. On Mac installing tslearn before mesmerize creates problems on anaconda for some reason:

    pip install mesmerize
  5. Install cython, and downgrade pandas:

    conda install Cython pandas~=0.25.3
  6. Install tslearn (optional):

    conda install -c conda-forge tslearn==0.2.1
  7. Install bottleneck (optional):

    pip install bottleneck==1.2.1
  8. To launch Mesmerize call it from the terminal:

    mesmerize

You will always need to activate the environment for Mesmerize before launching it.

You might get a matplotlib error similar to below:

Bad val 'qt5' on line #1
"backend: qt5

in file "/Users/kushal/.matplotlib/matplotlibrc"
Key backend: Unrecognized backend string 'qt5': valid strings are ['GTK3Agg', 'GTK3Cairo', 'MacOSX', 'nbAgg', 'Qt4Agg', 'Qt4Cairo', 'Qt5Agg', 'Qt5Cairo', 'TkAgg', 'TkCairo', 'WebAgg', 'WX', 'WXAgg', 'WXCairo', 'agg', 'cairo', 'pdf', 'pgf', 'ps', 'svg', 'template']

To fix this, execute the following which appends the default matplotlib backend-option. Note that this will probably affect matplotlib in all your environments:

echo "backend: qt5" >> ~/.matplotlib/matplotlibrc

Windows

Tested on Windows 10, not sure if it'll work on earlier Windows versions.

Download & install Anaconda for Python 3: https://www.anaconda.com/distribution/

You will also need git: https://gitforwindows.org/

Warning

It is highly recommended that you use Mesmerize in a new dedicated environment, even if you already have major dependencies (like caiman) installed in another environment.

All commands are to be run in the powershell

  1. You will need anaconda to be accessible through powershell. You may need to run powershell as administrator for this step to to work. Close & open a new non-admin powershell after running this:

    conda init powershell

You will need a relatively recent version of Anaconda in order to run conda commands through the powershell.

  1. Create a new anaconda environment:

    conda create -n mesmerize python=3.6
  2. Activate the environment:

    conda activate mesmerize
  3. Install caiman:

    conda install -c conda-forge caiman
  4. Downgrade pandas, install Cython:

    conda install Cython pandas~=0.25.3
  5. Install tslearn (optional):

    conda install -c conda-forge tslearn==0.2.1
  6. Install bottleneck (optional):

    pip install bottleneck==1.2.1
  7. Install graphviz:

    conda install graphviz
  8. Install pywin32:

    pip install pywin32
  9. Install Mesmerize:

    pip install mesmerize
  10. Allow powershell to execute scripts. Run powershell as administrator to execute these commands. This is required for the batch manager and k-Shape GUI which launch external processes. This may affect the security of your system by allowing scripts to be executable. I'm not an expert on Windows so if someone knows a better way to do this let me know! As far as I know, I'm not sure why you would try to execute untrusted scripts so this shouldn't be a concern?:

    Set-ExecutionPolicy RemoteSigned
    Set-ExecutionPolicy Bypass -scope Process -Force
  11. Launch Mesmerize:

    mesmerize

Note

In order to use some features, such as the batch manager, you will need to check your System Configuration settings in Mesmerize <SystemConfiguration> to make sure that it activates the conda environment that mesmerize is installed in. By default the pre-run commands contain # conda activate mesmerize but you will need to uncomment the line (remove the #) or change it if you are using an environment with a different name.

From GitHub (Development)

First, make sure you have compilers & python3.6 (see the details above for various Linux distros or Mac OSX)

  1. Create a virtual environment:

    # Choose a path to house the virtual environment
    python3.6 -m venv /path/to/venv
  2. Activate the virtual environment:

    source /path/to/venv/bin/activate
  3. Upgrade pip & setuptools & install some build dependencies:

    pip install --upgrade pip setuptools
    pip install Cython numpy tslearn==0.2.2
  4. Fork the main repo on github and clone it:

    git clone https://github.com/<your_github_username>/MESmerize.git
    cd MESmerize
  5. Switch to new branch:

    git checkout -b my-new-feature
  6. Install in editable mode:

    pip install -e .
  7. Make your changes to the code & push to your fork:

    git push origin my-new-feature
  8. Create a pull request if you want to incorporate it into the main Mesmerize repo.