Installation¶
TissUUmaps is a browser-based tool for fast visualization and exploration of millions of data points overlaying a tissue sample. TissUUmaps can be used as a web service or locally in your computer, and allows users to share regions of interest and local statistics.
Windows installation¶
Download the Windows Installer (
.exe
) from the last release and install it. Note that the installer is not signed yet and may trigger warnings from the browser and from the firewall. You can safely pass these warnings.
MacOS installation¶
Install vips with
brew install vips
(needs homebrew installed https://brew.sh/).Download the macOS installer (
.dmg
) from the last release and install it. Download thex86_64
file if you have an Intel CPU, or download thearm64
file if you have an Apple Silicon (M1/M2) CPU.In the installer, drag-and-drop the TissUUmaps bundle to the Applications directory.
When the copy is finished, double-click the Applications icon in the installer and right-click + open TissUUmaps from the Applications menu. - A warning should be prompted “macOS cannot verify the developer of TissUUmaps (…)”, click open and the program should launch.
Debian / Ubuntu installation¶
Download the Ubuntu installer (
.deb
) from the last release .deb file (20.04 or 22.04 depending on your Ubuntu version)
PIP installation¶
If you want specific Python packages to be installed with TissUUmaps, or if your no installer is available for your operating system, you will need to install TissUUmaps using pip
:
Install
libvips
for your system: https://www.libvips.org/install.html:An easy way to install
libvips
is to use an Anaconda environment withlibvips
:conda create -y -n tissuumaps_env -c conda-forge python=3.9 conda activate tissuumaps_env
Install dependencies using
conda
:conda install -c conda-forge libvips pyvips openslide-python
Install the TissUUmaps library using
pip
:pip install "TissUUmaps[full]"
Note
If the installation fails with PyQt6, you can remove
[full]
from the previous command and run step 5 to start TissUUmaps server.Start the TissUUmaps user interface:
tissuumaps
Or start TissUUmaps as a local server:
tissuumaps_server path_to_your_images
And open http://127.0.0.1:5000/ in your favorite browser.