11 2021 档案

摘要:(本文主要内容参考 Deploy flask app with Nginx using Gunicorn | by Tasnuva Zaman | FAUN Publication) 1 所需组件 Python3.7 Virtualenv Flask Gunicorn Nginx 组件关系图如下: 阅读全文
posted @ 2021-11-25 17:45 AdamTang 阅读(312) 评论(0) 推荐(0)
摘要:1 建立msg文件 tzy@ubuntu:~/ROS_Example/catkin_ws$ source devel/setup.bash tzy@ubuntu:~/ROS_Example/catkin_ws$ roscd beginner_tutorials/tzy@ubuntu:~/ROS_Ex 阅读全文
posted @ 2021-11-17 16:09 AdamTang 阅读(890) 评论(0) 推荐(0)
摘要:1 在beginner_tutorials包中添加测试代码文件,参考cn/ROS/Tutorials/WritingPublisherSubscriber(c++) - ROS Wiki tzy@ubuntu:~/ROS_Example/catkin_ws/src/beginner_tutorial 阅读全文
posted @ 2021-11-16 17:11 AdamTang 阅读(148) 评论(0) 推荐(0)
摘要:1 安装python3.7 首先删除pip3,因为pip3默认是跟随3.5的版本。 sudo apt remove python3-pip Ubuntu 16.04中python3默认为3.5,需要安装与开发环境一致的3.7。 sudo apt update sudo apt install sof 阅读全文
posted @ 2021-11-12 17:26 AdamTang 阅读(471) 评论(0) 推荐(0)
摘要:原始代码 namespace test3 { class Base1 { public: virtual void e() { std::cout << "e" << std::endl; } virtual void f() { std::cout << "f" << std::endl; } v 阅读全文
posted @ 2021-11-02 14:16 AdamTang 阅读(91) 评论(0) 推荐(0)