首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

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

穷则变,变则通,通则久。——《易经.系辞下》

操作系统: 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

  • 发表于:
  • 原文链接https://page.om.qq.com/page/OumlgFZ3LltoeBNRg_ibefUQ0
  • 腾讯「腾讯云开发者社区」是腾讯内容开放平台帐号(企鹅号)传播渠道之一,根据《腾讯内容开放平台服务协议》转载发布内容。
  • 如有侵权,请联系 cloudcommunity@tencent.com 删除。

扫码

添加站长 进交流群

领取专属 10元无门槛券

私享最新 技术干货

扫码加入开发者社群
领券