
Installing platerecipy
Supported platforms
Though platerecipy is fundamentally a Python package, it also relies on
backend functionalities that are implemented in C. Linux is the main operating
system for platerecipy.
platerecipy is now available on Windows
Expect for a number of optimizations (e.g., multithreaded C functions),
platerecipy is now available via pip on Windows systems.
Easy installation
Releases are made available on PyPI so that platerecipy can be installed using
pip on the shell as follows:
1 | |
to also use functions that require pyvista package (namely, platerecipy.io.save_as_vtp
or platerecipy.io.save_six_view_angles), you can install the relevant optional
dependencies by:
1 | |
platerecipy.io.save_as_vtk vs. platerecipy.io.save_as_vtp
Both of these functions generate ParaView readable output. However, save_as_vtk
does not require third party packages of vtk and pyvista. Accordingly,
by default save_as_vtk is preferred.
An isolated working environment
Especially on Linux, it is generally recommended to create an isolated virtual
environment, retaining the OS Python intact:
1 2 3 4 5 6 7 8 | |
which then can be accessed by:
1 2 | |