当前位置: 首页 > article >正文

Ubuntu从源码安装Webots

参考地址https://github.com/cyberbotics/webots/wiki/Linux-installation/

1. 下载源码

git clone -b R2021a --recurse-submodules -j8 https://github.com/cyberbotics/webots.git
git clone git@github.com:cyberbotics/webots.git
cd webots
git checkout R2021a
git submodule init
git submodule update

在这里插入图片描述
在这里插入图片描述

2. 编译安装

sudo ./scripts/install/linux_compilation_dependencies.sh 
sudo apt install python3-pip
sudo -H pip3 install --upgrade pip
sudo -H pip3 install tornado psutil requests distro pynvml
cat scripts/install/bashrc.linux >> ~/.bashrc
nano ~/.bashrc # 更新源码及qt路径
source ~/.bashrc
make -j8

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

3. 运行启动

webots

http://www.kler.cn/a/588578.html

相关文章:

  • 【Agent】OpenManus-Agent架构详细分析
  • (vue)elementUi中el-upload上传附件之后 点击附件可下载
  • 【实操回顾】基于Apache SeaTunnel从MySQL同步到PostgreSQL——Demo方舟计划
  • C11标准对于C语言的内存模型的描述
  • 移动端自动化测试:Appium进阶技巧与常见问题排查实战指南
  • lua C语言api学习4 编写C模块
  • 颠覆大模型归一化!Meta | 提出动态Tanh:DyT,无归一化的 Transformer 性能更强
  • 【JavaEE】IOC和DI
  • Towards Universal Soccer Video Understanding——论文学习(足球类)
  • K8S下nodelocaldns crash问题导致域名请求响应缓慢
  • 快速上手网络通信 -- Qt Network应用开发
  • 1140:验证子串--next.data()、KMP和find
  • 大模型-提示词调优
  • 查询修改ORACLE的server、客户端和导出dmp文件 字符集编码
  • LeetCode--198. 打家劫舍【从返回最大值到输出路径】
  • 【Go语言圣经2.4】
  • 以太坊生态中有代币标准和协议,针对不同场景设计了丰富的功能
  • 网络安全演练有哪些形式
  • GO语言的GC(垃圾回收)原理
  • 浏览器缓存机制:JavaScript 文件缓存导致 404 错误的解决方案