穷则变,变则通,通则久。——《易经.系辞下》
操作系统: ubuntu 20.04
更新时间: 20240221
Apt 命令列出已安装软件
apt list --installed
apt list --installed | less
# OR
dpkg -l
opencv版本
pkg-config --modversion opencv
# python3
import cv2
cv2.__version__
python版本
python2 --version # 查看 python2 安装版本
python3 --version # 查看 python3 安装版本
python --version # 查看默认 python 版本
# 修改默认版本
echo alias python=python3 >> ~/.bashrc
source ~/.bashrc
# 查看当前使用 python 的安装位置
which python
eigen版本
sudo gedit /usr/include/eigen3/Eigen/src/Core/util/Macros.h
版本为3.3.7
#define EIGEN_WORLD_VERSION 3
#define EIGEN_MAJOR_VERSION 3
#define EIGEN_MINOR_VERSION 7
CUDA版本
nvcc -V
CUDNN版本
cat /usr/local/cuda/include/cudnn_version.h | grep CUDNN_MAJOR -A 2
领取专属 10元无门槛券
私享最新 技术干货