- brief introduction
- Table of contents
- Latest documents
- Collection Download
CentOS7 编译安装opencv-4.10.0
opencv-4.6.0 所需的必要依赖和版本: - Python -3.0 以上 - gcc g++ -8.0 以上 - cmake -3.0 以上 1. 升级gcc编译器 安装 SCL 源 因CentOS7 现已停止维护和支持,需改为归档源 ``` tee > /etc/yum.repos.d/CentOS-SCLo.repo << EOF CentOS-SCLo-………
Nathan - Aug. 8, 2024, 1:46 p.m.
预编译Python独立版
介绍 项目地址:https://github.com/indygreg/python-build-standalone python-build-standalone 是一个由 indygreg 维护的 GitHub 仓库,旨在构建独立的 Python 解释器。它提供了预构建的 Python 可执行文件,使用户能够在无需本地编译的情况下使用 Python,从而简化了部署和环境管理。 仓库的作用 ………
Nathan - June 18, 2024, 5:40 p.m.
自定义Python编译安装路径
前言:python在linux环境下面没有安装包,只支持从源码安装 本文编译的Python版本为:v3.7.12 本环境将自定义安装到:/data/python下 一、安装依赖环境 1.1 安装编译环境 ```bash yum install -y gcc gcc-c++ make 创建预安装目录 mkdir -p /data/python/Python3.7.12 ``` 2.1 编译zl………
Nathan - Dec. 6, 2021, 12:33 p.m.