dusty-nv / jetson-utils

C++/CUDA/Python multimedia utilities for NVIDIA Jetson
MIT License
716 stars 283 forks source link

Possibility to use conda environments #207

Open johnnynunez opened 5 months ago

johnnynunez commented 5 months ago

First create conda environment.

conda create -n py311 python=3.11
conda activate py311
conda install numpy --yes # install numpy first

Procedure with USE_CONDA ARG:

cmake -DUSE_CONDA=ON ../ # use enviroment anaconda

Also added noble for future ubuntu 24.04

image

use cmake from system, if you want to use from conda:

conda install cmake
conda install -c conda-forge gcc cxx-compiler

sudo -E make install