Installation

CellART can be installed via two approaches: using pip or directly from the GitHub repository.

Installing through pip

You can install the stable release of CellART directly from pip. First, ensure you have set up a compatible Python environment using conda or any other package manager. Then, execute the following commands:

$ conda create -n cellart python=3.10
$ conda activate cellart
$ pip install cellart

NOTE: Due to differences in GPU models and CUDA versions, you may need to manually reinstall PyTorch and Tensorflow to ensure compatibility. CellART relies heavily on GPU acceleration for efficient processing of large-scale spatial transcriptomics datasets.

Installing from GitHub

# Clone the repository
$ git clone https://github.com/YangLabHKUST/CellART.git

# Navigate to the cloned directory
$ cd CellART

# Install the package
$ pip install .