Package Details: matplotlib-cpp-git r177.ef0383f-2

Git Clone URL: https://aur.archlinux.org/matplotlib-cpp-git.git (read-only, click to copy)
Package Base: matplotlib-cpp-git
Description: Extremely simple yet powerful header-only C++ plotting library built on the popular matplotlib
Upstream URL: https://github.com/lava/matplotlib-cpp
Licenses: MIT
Conflicts: matplotlib-cpp
Provides: matplotlib-cpp
Submitter: acxz
Maintainer: carlosal1015
Last Packager: carlosal1015
Votes: 1
Popularity: 0.000000
First Submitted: 2020-03-16 06:53 (UTC)
Last Updated: 2023-05-07 21:57 (UTC)

Dependencies (3)

Required by (1)

Sources (1)

Latest Comments

joaocandre commented on 2023-03-03 15:29 (UTC)

I'd suggest also install the CMake module config by also copying the 'cmake' folder into e.g. '\usr\local\lib\cmake'

acxz commented on 2022-07-01 19:26 (UTC)

recommending the more featured matplotplusplus package

bilabila commented on 2020-04-20 01:39 (UTC) (edited on 2020-04-20 01:41 (UTC) by bilabila)

Thank you for this package. Just for reference, I made out a minimal plot show by adding two packages

python-cairo
python-gobject

and with this compilation option

"command": "/usr/bin/g++",
"args": [
    "-g",
    "${file}",
    "-I",
    "/usr/include/matplotlib-cpp",
    "-I",
    "/usr/include/python3.8",
    "-I",
    "/usr/lib/python3.8/site-packages/numpy/core/include",
    "-l",
    "python3.8",
    "-o",
    "${fileDirname}/${fileBasenameNoExtension}"
],