How do I include a system package installed by apt install? #9287
Unanswered
bryanhughes
asked this question in
Q&A
Replies: 2 comments
-
https://python-poetry.org/docs/configuration#virtualenvsoptionssystem-site-packages but be aware that if after locking poetry disagrees with the answer that you have provided, then it will try to put it right - which probably is not what you want. you may prefer to |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks!
… On Apr 8, 2024, at 12:29 PM, David Hotham ***@***.***> wrote:
https://python-poetry.org/docs/configuration#virtualenvsoptionssystem-site-packages
but be aware that if after locking poetry disagrees with the answer that you have provided, then it will try to put it right - which probably is not what you want. you may prefer to poetry lock but pip install
—
Reply to this email directly, view it on GitHub <#9287 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AAAFFXQDIEFTLYZO3FSJ663Y4LVYXAVCNFSM6AAAAABF5GAVRGVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TANJQGU3DI>.
You are receiving this because you authored the thread.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I am working on a Nvidia Jetson Orin that has its own versions of several libraries like
tensorrt
. They are installed to/usr/lib/python3.10/dist-packages/tensorrt
I tried the following in my pyproject.toml:
[tool.poetry.dependencies]
tensorrt = {path = "/usr/lib/python3.10/dist-packages/tensorrt"}
Directory /usr/lib/python3.10/dist-packages/tensorrt for tensorrt does not seem to be a Python package
Beta Was this translation helpful? Give feedback.
All reactions