hypernetx/hypernetx

By hypernetx

Updated 12 months ago

Python package for hypergraph analysis and visualization

Image
Data science
2

312

hypernetx/hypernetx repository overview

Description

This Docker image provides a Jupyter Notebook that has the latest version of HyperNetX and HNXWidget installed; it also contains all the HyperNetX tutorials.

Quickstart

Run the Container

  • Using Docker CLI, run the container in the foreground:
docker run -it --rm -p 8888:8888 -v "${PWD}":/home/jovyan/work hypernetx/hypernetx:latest
  • Alternatively, you can create a docker-compose.yml file with the following:
version: '3'

services:
  hypernetx:
    image: hypernetx/hypernetx:latest
    ports:
      - "8888:8888"
    tty: true
    stdin_open: true
    volumes:
      - "${PWD}:/home/jovyan/work"

Once docker-compose.yml is created, run the image:

docker-compose up

Open Jupyter Notebook

After the container has started, access the HyperNetX Jupyter Notebooks by opening the following URL in a browser:

http://localhost:8888/tree

Tag summary

Content type

Image

Digest

sha256:5e3098001

Size

440.8 MB

Last updated

12 months ago

docker pull hypernetx/hypernetx