Vispy Python Graphics: Difference between revisions
From wikiluntti
(Created page with "== Introduction == VIspy; Python; high-performance interactive 2D/3D data visualization library. VisPy leverages the computational power of modern Graphics Processing Units (GPUs) through the OpenGL library to display very large datasets. === Installation === <syntaxhighlight lang="bash"> </syntaxhighlight> <syntaxhighlight lang="bash"> </syntaxhighlight> <syntaxhighlight lang="bash"> </syntaxhighlight> == Simple programs == === 1 === === 2 === === 3 =...") |
|||
Line 9: | Line 9: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Install using many methods: here is pip. Include PyQT5. | |||
Also you can also install VisPy from Test PyPI, a separate instance of the Python Package Index that allows you to try distribution tools and processes without affecting the real index. | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
pip install vispy | |||
pip install PyQt5 | |||
pip install --index-url <https://test.pypi.org/simple/> vispy | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Test and check the GL version using test() command. | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
import vispy | |||
vispy.test() | |||
</syntaxhighlight> | </syntaxhighlight> | ||
== Simple programs == | == Simple programs == |
Revision as of 13:05, 14 April 2025
Introduction
VIspy; Python; high-performance interactive 2D/3D data visualization library. VisPy leverages the computational power of modern Graphics Processing Units (GPUs) through the OpenGL library to display very large datasets.
Installation
Install using many methods: here is pip. Include PyQT5.
Also you can also install VisPy from Test PyPI, a separate instance of the Python Package Index that allows you to try distribution tools and processes without affecting the real index.
pip install vispy
pip install PyQt5
pip install --index-url <https://test.pypi.org/simple/> vispy
Test and check the GL version using test() command.
import vispy
vispy.test()