Hi, In short, no. Pipenv is designed to only manage Python packages, and cannot be used to access a software that’s not available as a Python package.
APT’s software package format (DEB) is significantly different from Python’s, and it is not possible to mix them together unless the tool is designed specifically to support such an operation; Pipenv does not try to set foot in this area. TP > On 28/3/2020, at 01:30, Samuel Mutel <[email protected]> wrote: > > Hello, > > I have a pipfile like this. > I would like to install python-apt library but not from pypi but from the > system. > Is-it possible? > This python library is no longer supported on pypi but is supported in the > package distribution. > > [[source]] > > name = "pypi" > > url = "https://pypi.org/simple <https://pypi.org/simple>" > > verify_ssl = true > > > > [dev-packages] > > > > [packages] > > ansible = "==2.8.4" > > ansible-lint = "*" > > molecule = "*" > > docker-py = "*" > > > > [requires] > > python_version = "3" > -- > Distutils-SIG mailing list -- [email protected] > To unsubscribe send an email to [email protected] > https://mail.python.org/mailman3/lists/distutils-sig.python.org/ > Message archived at > https://mail.python.org/archives/list/[email protected]/message/Y5ANHS5NPQE52RZ565EMC7ZNQDUWI5JE/
-- Distutils-SIG mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/distutils-sig.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/ECZ3CWAI6QPXBYUKTYWRI762YVC4FUPC/
