Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add g++ and setuptools to dependencies in README.md #256

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,22 +36,24 @@ Gnofract 4D requires these packages to run:
- Python version 3.6 or higher
- GTK version 4.6 or higher
- PyGObject version 3.29.2 or higher to access GTK from Python
- A C++ compiler (used at runtime to compile your fractal formulas)
- A C compiler (used at runtime to compile your fractal formulas)

On Ubuntu, these can be installed with:
On Debian/Ubuntu, these can be installed with:

sudo apt install gcc gir1.2-gtk-4.0 python3-gi

To build from source you also need:

- A C++ compiler
- headers for libpng and libjpeg
- Python headers
- glib-compile-resources and optionally xmllint
- pkg-config
- Python setuptools package

On Ubuntu, these can be installed with:
On Debian/Ubuntu, these can be installed with:

sudo apt install libglib2.0-dev-bin libjpeg-dev libpng-dev libpython3-dev libxml2-utils pkg-config
sudo apt install build-essential libglib2.0-dev-bin libjpeg-dev libpng-dev libpython3-dev libxml2-utils pkg-config python3-setuptools

If FFmpeg is installed it will be possible to create videos.

Expand Down