Skip to main content

Tools for quick visualization of three dimensional datasets.

Project description

Data slicer

3D data visualization tools with plugin capabilites.

Installation

The package can be installed from pypi using pip install data_slicer. It is recommended to do this from within some sort of virtual environment.

Detailed instructions for Anaconda users follow:

  1. Open "Anaconda Prompt"

  2. In order not to mess up your dependencies (footnote 1), create a virtual environment with python version 3.7.5

$ conda create --name testenv python==3.7.5
[some output]
$ conda activate testenv
(testenv) $
  1. Inside your virtual environment, run the following command to download and install data_slicer with all its dependencies:
(testenv) $ pip install data_slicer

This will create a lot of console output. If everything succeeded, you should see something like Successfully installed data_slicer towards the end.

  1. Test the installation by running a test script:
(testenv) $ python -m data_slicer.tests.cool_test

This should bring up a window with some example data.

Documentation

The documentation is hosted by the friendly people over at ReadTheDocs.org: https://data-slicer.readthedocs.io/en/latest/

Footnotes

(footnote 1) You most likely have many different python packages installed on your systems, like matplotlib, numpy, scipy, etc. These all have a specific version. Certain packages, however, depend on specific versions of other packages and may not work if you have the wrong version installed. Obviously, with many packages, this bears the potential of becoming very messy and complicated. That's the main reason virtual environments have been created. The idea is, to create an isolated environment of you python install, completely separate from your system installation or other virtual environments. The new environment comes without any additional packages (usually). So if you were to list your installed packages of your system install with the command pip freeze like this:

$ pip freeze
matplotlib==2.2.4
numpy==1.13.1
[...]

it would look like this, once you are "in" a newly created environment:

(env) $ pip freeze
[nothing]

. Everything you install into this virtual environment only lives there, keeping your system installation "clean". It is also possible to have varying python versions and more things, but that's the gist of it.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

data-slicer-0.0.7.tar.gz (11.2 MB view hashes)

Uploaded Source

Built Distribution

data_slicer-0.0.7-py3-none-any.whl (11.2 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page