Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 May 2021 17:46:10 +0000
From:      bugzilla-noreply@freebsd.org
To:        python@FreeBSD.org
Subject:   [Bug 255743] devel/ipython 7.23.1 fails to run: The 'matplotlib-inline' distribution was not found and is required by ipython
Message-ID:  <bug-255743-21822-FsxSQ5FkGR@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-255743-21822@https.bugs.freebsd.org/bugzilla/>
References:  <bug-255743-21822@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D255743

rsmith@xs4all.nl changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rsmith@xs4all.nl

--- Comment #1 from rsmith@xs4all.nl ---
I can confirm the problem. (Python 3.9, 13.0-STABLE AMD64)

Looking at the setup.py of IPython, we are indeed missing a dependency;

install_requires =3D [
    "setuptools>=3D18.5",
    "jedi>=3D0.16",
    "decorator",
    "pickleshare",
    "traitlets>=3D4.2",
    "prompt_toolkit>=3D2.0.0,<3.1.0,!=3D3.0.0,!=3D3.0.1",
    "pygments",
    "backcall",
    "matplotlib-inline",
]

After cloning https://github.com/martinRenou/matplotlib-inline and installi=
ng
it, IPython runs OK.

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-255743-21822-FsxSQ5FkGR>