在jetson的conda虚拟环境中安装tensorrt

CGC Lv4

写在前面

jetson系列出场的python自带tensorRT
由于使用conda的关系,又是会需要在虚拟环境中安装tensorRT

方法

找到默认python中的tensorrt并在conda虚拟环境中建立软连接

以我的环境为例
我的系统上的为python3.8 ,其tensorrt位于/usr/lib/python3.8/dist-packages/tensorrt*
conda虚拟环境中的虚拟环境文件夹为~/archiconda3/envs/py38/lib/python3.8/site-packages
故我的建立软链接为

1
sudo ln -s /usr/lib/python3.8/dist-packages/tensorrt* ~/archiconda3/envs/py38/lib/python3.8/site-packages
  • Title: 在jetson的conda虚拟环境中安装tensorrt
  • Author: CGC
  • Created at: 2023-07-21 14:29:43
  • Updated at: 2023-08-24 18:55:22
  • Link: https://redefine.ohevan.com/2023/07/21/在jetson的conda虚拟环境中安装tensorrt/
  • License: This work is licensed under CC BY-NC-SA 4.0.
On this page
在jetson的conda虚拟环境中安装tensorrt