ubuntu初始配置——常用软件版本查看命令


操作系统: ubuntu 20.04
更新时间: 2024年2月21日


Apt 命令列出已安装软件

bash 复制代码
apt list --installed
apt list --installed | less
# OR
dpkg -l

opencv版本

bash 复制代码
pkg-config --modversion opencv

或者python查找

python 复制代码
# python3
import cv2
cv2.__version__

python版本

bash 复制代码
python2 --version   # 查看 python2 安装版本
python3 --version   # 查看 python3 安装版本
python --version    # 查看默认 python 版本

# 修改默认版本
echo alias python=python3 >> ~/.bashrc
source ~/.bashrc

# 查看当前使用 python 的安装位置
which python

eigen版本

bash 复制代码
sudo gedit /usr/include/eigen3/Eigen/src/Core/util/Macros.h
  • 版本为3.3.7
bash 复制代码
#define EIGEN_WORLD_VERSION 3
#define EIGEN_MAJOR_VERSION 3
#define EIGEN_MINOR_VERSION 7

CUDA版本

bash 复制代码
nvcc -V

CUDNN版本

bash 复制代码
cat /usr/local/cuda/include/cudnn_version.h | grep CUDNN_MAJOR -A 2
相关推荐
不想起昵称92914 分钟前
Linux SHELL脚本中的变量与运算
linux
the丶only43 分钟前
单点登录平台Casdoor搭建与使用,集成gitlab同步创建删除账号
linux·运维·服务器·docker·gitlab
ccubee1 小时前
docker 安装 ftp
运维·docker·容器
枫叶红花2 小时前
【Linux系统编程】:信号(2)——信号的产生
linux·运维·服务器
yaosheng_VALVE2 小时前
探究全金属硬密封蝶阀的奥秘-耀圣控制
运维·eclipse·自动化·pyqt·1024程序员节
_微风轻起2 小时前
linux下网络编程socket&select&epoll的底层实现原理
linux·网络
dami_king2 小时前
SSH特性|组成|SSH是什么?
运维·ssh·1024程序员节
启明真纳2 小时前
elasticache备份
运维·elasticsearch·云原生·kubernetes
苹果醋32 小时前
SpringBoot快速入门
java·运维·spring boot·mysql·nginx