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

网站出现500怎么找网站做公示

网站出现500,怎么找网站做公示,wordpress选不了中文,个体工商户注册查询一、前提介绍#xff1a; 本文主要采用两种方式在NVIDIA 下基于 Ubuntun20.04安装 ros2-foxy。 使用环境#xff1a; NVIDIA 为 Jetson 系列下 Jetson Xavier NX#xff1b; Ubuntun版本#xff1a;20.04 二、安装方法#xff1a; 1、使用脚本编译方式#xff1a; 使…一、前提介绍 本文主要采用两种方式在NVIDIA 下基于 Ubuntun20.04安装 ros2-foxy。 使用环境 NVIDIA 为 Jetson 系列下 Jetson Xavier NX Ubuntun版本20.04 二、安装方法 1、使用脚本编译方式 使用执行下列脚本进行安装 #!/bin/bash # # Copyright (c) 2021 Jetsonhacks # MIT License# Roughly follows the Install ROS From Source procedures from: # https://index.ros.org/doc/ros2/Installation/Foxy/Linux-Development-Setup/ # mostly from: # Dockerfile.ros.foxy # https://github.com/dusty-nv/jetson-containers # ROS_PKGros_base ROS_DISTROfoxy # Core ROS2 workspace - the underlay ROS_BUILD_ROOT/opt/ros/${ROS_DISTRO}-src ROS_INSTALL_ROOT/opt/ros/${ROS_DISTRO}locale # check for UTF-8sudo apt update sudo apt install locales sudo locale-gen en_US en_US.UTF-8 sudo update-locale LC_ALLen_US.UTF-8 LANGen_US.UTF-8 export LANGen_US.UTF-8# Add the ROS 2 apt repository sudo apt-get update sudo apt-get install -y --no-install-recommends \curl \wget \ gnupg2 \lsb-release sudo rm -rf /var/lib/apt/lists/*wget --no-check-certificate https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc sudo apt-key add ros.asc sudo sh -c echo deb [arch$(dpkg --print-architecture)] http://packages.ros.org/ros2/ubuntu $(lsb_release -cs) main /etc/apt/sources.list.d/ros2-latest.list# install development packages sudo apt-get update sudo apt-get install -y --no-install-recommends \build-essential \cmake \git \libbullet-dev \libpython3-dev \python3-colcon-common-extensions \python3-flake8 \python3-pip \python3-pytest-cov \python3-rosdep \python3-setuptools \python3-vcstool \python3-rosinstall-generator \libasio-dev \libtinyxml2-dev \libcunit1-dev sudo rm -rf /var/lib/apt/lists/*# install some pip packages needed for testing python3 -m pip install -U \argcomplete \flake8-blind-except \flake8-builtins \flake8-class-newline \flake8-comprehensions \flake8-deprecated \flake8-docstrings \flake8-import-order \flake8-quotes \pytest-repeat \pytest-rerunfailures \pytest# compile yaml-cpp-0.6, which some ROS packages may use (but is not in the 18.04 apt repo) git clone --branch yaml-cpp-0.6.0 https://github.com/jbeder/yaml-cpp yaml-cpp-0.6 \cd yaml-cpp-0.6 \mkdir build \cd build \cmake -DBUILD_SHARED_LIBSON .. \make -j$(nproc) \sudo cp libyaml-cpp.so.0.6.0 /usr/lib/aarch64-linux-gnu/ \sudo ln -s /usr/lib/aarch64-linux-gnu/libyaml-cpp.so.0.6.0 /usr/lib/aarch64-linux-gnu/libyaml-cpp.so.0.6# https://answers.ros.org/question/325245/minimal-ros2-installation/?answer325249#post-id-325249 sudo mkdir -p ${ROS_BUILD_ROOT}/src \cd ${ROS_BUILD_ROOT} sudo sh -c rosinstall_generator --deps --rosdistro ${ROS_DISTRO} ${ROS_PKG} launch_xml launch_yaml example_interfaces ros2.${ROS_DISTRO}.${ROS_PKG}.rosinstall \ cat ros2.${ROS_DISTRO}.${ROS_PKG}.rosinstall \vcs import src ros2.${ROS_DISTRO}.${ROS_PKG}.rosinstall# download unreleased packages sudo sh -c git clone --branch ros2 https://github.com/Kukanani/vision_msgs ${ROS_BUILD_ROOT}/src/vision_msgs \git clone --branch ${ROS_DISTRO} https://github.com/ros2/demos demos \cp -r demos/demo_nodes_cpp ${ROS_BUILD_ROOT}/src \cp -r demos/demo_nodes_py ${ROS_BUILD_ROOT}/src \rm -r -f demos# install dependencies using rosdep sudo apt-get updatecd ${ROS_BUILD_ROOT} sudo rosdep init rosdep update \rosdep install --from-paths src --ignore-src --rosdistro ${ROS_DISTRO} -y --skip-keys console_bridge fastcdr fastrtps rti-connext-dds-5.3.1 urdfdom_headers qt_gui \sudo rm -rf /var/lib/apt/lists/*# build it! sudo mkdir -p ${ROS_INSTALL_ROOT} # sudo required to write build logs sudo colcon build --merge-install --install-base ${ROS_INSTALL_ROOT} # We do this twice to make sure everything gets built # For some reason, this has been an issue sudo colcon build --merge-install --install-base ${ROS_INSTALL_ROOT}# Using expands environment variable immediately echo source $ROS_INSTALL_ROOT/setup.bash ~/.bashrc echo source /usr/share/colcon_cd/function/colcon_cd.sh ~/.bashrc echo export _colcon_cd_root~/ros2_install ~/.bashrc 脚本安装完毕后默认会在在/opt/ros/目录下生成foxy和foxy-src文件夹foxy为编译后的程序 使用source 将对应 foxy文件夹里面加载到环境变量中 source /opt/ros/foxy/setup.bash然后 运行 ros2 --help 如果不报错就代表安装成功。 2、使用docker安装ros2-foxy 2.1 安装docker命令 依次执行下列命令 sudo apt-get update # 更新软件列表 sudo apt-get install -y docker.io #安装docker systemctl start docker #配置开机启动 systemctl enable docker sudo docker --version #检测是否安装成功2.2 下载启动 ros镜像 执行下列命令 docker pull aigrobv/ros-foxy:cisha256:035df49e8f307946a10b73d307ac2c35ce0c08ea2da5a824dbdaa4952fcf06ed #sudo docker pull osrf/ros:foxy-desktop //下载ROS镜像如果需要arm架构可以修改对应镜像 # https://hub.docker.com/layers/aigrobv/ros-foxy/ci/images/sha256-146d88b0137f260f442d1c0b77b749237b392358d44476074829ff880f705e6e sudo docker images #查看镜像信息 sudo docker run -it osrf/ros:foxy-desktop #启动镜像 ros2 -h #查看ROS2的帮助信息如不报错则代表安装成功三、总结 本文在NVIDIA 使用了 Ubuntun20.04环境下 脚本编译安装 ros2-foxy 和 使用docker安装 ros-foxy的两种方式相对来说docker方式简单一点推荐docker方式安装。
http://www.hkea.cn/news/14439493/

相关文章:

  • Excel怎么做网站链接一号店网上商城
  • 做门户网站需要什么一个域名大概能卖多少钱
  • 网站开发实现前后端分离盲盒小程序搭建
  • 做医疗健康类网站需要资质吗有那些方法推广网站
  • 国内比较好的软文网站来个网站急急急2021年
  • 做网站需要好多钱上海网站建设聚众网络
  • 建立网站外链常用的渠道有哪些建设网站需要的人员及资金
  • 暂时没有域名怎么做网站网站建设与维护教学课件
  • 学校网站定位网站建设技术难题
  • 免费设计模板网站个人简历怎么做
  • 网站 注册模块怎么做烟台logo设计公司
  • 南昌定制网站开发费用店面设计的重要性
  • 优秀个人网站欣赏邢台建设网站
  • 重庆网站建设 微客巴巴大公司做网站的优势
  • 杭州网站制作方法网站打不开原因检测
  • 湘潭网站建设企业广东东莞免费网站制作公司
  • 网站怎么静态化东营外贸型网站设计
  • 舆情网站网址建设部网站221号文件
  • 我想做个网站老山做网站的公司
  • 厦门市同安区建设局公开网站网站直播的功能怎样做
  • 中济建设官方网站万网网站建设的子分类能显示多少个
  • 网站运营繁忙手机网站的建设价格
  • 北京网站seo排名跨境电商自己做网站卖衣服
  • 做品牌网站哪个好点网站页脚内容
  • 如何做幸运28网站代理福建 网站建设
  • 微商网站推广怎么做怎么知道公司网站是哪个公司做的
  • 怎样建个网站wordpress 批量注册
  • 丰县住房与城乡建设部网站网站备案的幕布是什么来的
  • 手机购物网站开发延吉市住房城乡建设局网站
  • 百度手机网站优化指南亳州网站建设推广