博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux下软件安装:Openblas安装
阅读量:4211 次
发布时间:2019-05-26

本文共 345 字,大约阅读时间需要 1 分钟。

一、apt安装

sudo apt-get install libopenblas-dev

二、手动从source安装

1 . 下载OpenBLAS并编译

git clone https://github.com/xianyi/OpenBLAS.git cd OpenBLAS make -j8 sudo make PREFIX=/usr/local/OpenBLAS install

三. 添加环境变量

在 /etc/profile 末尾加上 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/OpenBLAS/lib/然后 sudo source /etc/profile

注:直接安装在/usr/local 下应该就不需要添加环境变量

转载地址:http://ubwmi.baihongyu.com/

你可能感兴趣的文章
通过SMTP发邮件
查看>>
读写EXCEL
查看>>
文件读写&文件夹遍历
查看>>
Java读写Excel
查看>>
Jenkins生成图表插件
查看>>
Bat命令
查看>>
Python学习笔记1
查看>>
Python学习笔记2
查看>>
CAPL创建与语法简介
查看>>
Nant简单功能介绍
查看>>
C++ 动态库&静态库创建和使用
查看>>
How to Create the CAPL DLL and integrated it into CANOE
查看>>
Jenkins-Build Monitor View
查看>>
Jenkins-Categorized Jobs View
查看>>
Jenkins-Join Plugin
查看>>
Jenkins-Throttle Concurrent Builds
查看>>
Jenkins-HTML5 Notifier Plugin
查看>>
Jenkins-Requeue Job
查看>>
Jenkins-自定义Plugin创建
查看>>
AUTOSAR DATABASE ARXML 与 VECTOR DATABASE FILE对比
查看>>