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:
-
Open "Anaconda Prompt"
-
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) $
- 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.
- 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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for data_slicer-0.0.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 414cc9dc8f2e9a3871f6406534fc443dcef24895183c3c2d571258501c08afbb |
|
MD5 | ad47072687c35af873e0a85d0a6dfed9 |
|
BLAKE2b-256 | 008d4b144305d0ac88ffd8679b1c31ede35d43df1f84ddca8c6543ab31db1f2b |