-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5a340ee
commit 4987585
Showing
1 changed file
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,23 @@ | ||
# vmtk-build | ||
Build VMTK | ||
|
||
Build VMTK via GitHub Actions | ||
|
||
Build VTK, ITK and VMTK automatically on push. On release, add tar.gz | ||
archives to the release. | ||
|
||
## Ubuntu 20.04 (Focal) | ||
|
||
To use you need to install a suitable python. APT packages are | ||
`libpython3.8` or `libpython3.9`. | ||
|
||
You also need to install OpenGL etc packages (libopengl0, libglx0, | ||
libxt6). | ||
|
||
So: | ||
|
||
``` | ||
apt-get install libpython3.8 libopengl0 libglx0 libxt6 | ||
``` | ||
|
||
|
||
|