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

icp备案域名购买seo是什么缩写

icp备案域名购买,seo是什么缩写,做网站托管服务器,代理办公司注册大概多少钱前言 编译过程有点曲折,做下记录,过程中,有参考别人写的博客,也看github 官方介绍,终于跑通了~ 环境说明: 首先需要稳定的梯子,可以访问“外网”ubuntu 环境,最终成功实验在Ubunt…

前言

编译过程有点曲折,做下记录,过程中,有参考别人写的博客,也看github 官方介绍,终于跑通了~

环境说明:

  • 首先需要稳定的梯子,可以访问“外网”
  • ubuntu 环境,最终成功实验在Ubuntu 22.04,应该主要体现在python 库的版本要求

基础:
关于梯子,我使用的是虚拟机NAT方式上网,走的主机windows 网络代理(clash 软件)
关于工具,另外git submodule 需要熟悉一下,有些库在网络状况可以的情况下,依然拉不下来,需要手动更新。

官方

https://github.com/project-chip/connectedhomeip/blob/master/docs/guides/chip_tool_guide.md

https://github.com/project-chip/connectedhomeip/blob/master/docs/guides/BUILDING.md

编译

1.clone 代码

git clone https://github.com/project-chip/connectedhomeip.git

看到有人分享用的siliconlabs 库的matter仓库,也是可以的,暂时不确定区别是什么

2.更新子模块

git submodule update --init --recursive

注意,这里大概率会出现拉取代码有问题,需要手动更新,可以将缺失的目录手动删除掉,然后使用下面命令可以拉取代码

git submodule update


比如编译时候提示找不到third_party/nlunit-test 文件,查看后发现文件夹内repo 目录是空的,手动删除掉,然后手动更新,通过find 命令查看文件,或者tree命令查看目录结构,验证文件成功下载

3.基本编译工具安装

sudo apt-get install git gcc g++ pkg-config libssl-dev libdbus-1-dev 
sudo apt-get install libglib2.0-dev libavahi-client-dev ninja-build python3-venv python3-dev 
sudo apt-get install python3-pip unzip libgirepository1.0-dev libcairo2-dev libreadline-devsudo apt-get install libsdl2-dev

4.编译前准备

This script takes care of downloading GN, ninja, and setting up a Python environment with libraries used to build and test.

翻译过来就是会安装GN,和Python环境以及一些库,来编译。关于GN和python 的一些具体用法,后面再看下具体使用方法,这里很关键,成败有一半卡在这里,

source scripts/bootstrap.sh

下把正确的执行结果截图,如下:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

细节!!! 这里不能用ssh 连接,来执行,在这里卡了比较久,直到看到这篇博客,在此之前,之前,已经问人、找博客、设置了各种代理,ssh 直连ubuntu 代理不生效(一语点醒梦中人-_-!!,感谢!!!)。

https://blog.csdn.net/digdugbomb/article/details/114403362

这里展开说下,粗鄙的理解做个记录:
看到的CPID 主要是pigweed在用,也是个开源项目pigweed。
在这里插入图片描述

所以,单独下载了代码,按照说明编译,也是报错的,打印信息都类似,看来是找对地方了,至少缩小范围。
遇到的问题,其实早在2020年已经有补丁了,推荐的办法是请点击,点击进去可以看到是修改了python 一段代码,关于使用代理下载,貌似是还有概率出现,要设置https代理为走http
在这里插入图片描述
关于代理设置我有点问题,因为我的clash 软件使用的是7890端口,ip 是10.10.122.96.我理解应该设置为
export https_proxy=http://10.10.122.96:7890

如果我设置成使用虚拟机ip方式https_proxy:=http://192.168.79.129:8080,是不应该是一样的??待确认,明确指导的还望指导

5.激活

source scripts/activate.sh

在这里插入图片描述
6.编译
参照文档开始编译了
在这里插入图片描述

在这里插入图片描述
这里报错了,还搜索了半天,准备在线安装的,无济于事,想着目的是编译chip-tool 直接编译试一下吧,转而编译chip-tool,执行命令,

./scripts/examples/gn_build_example.sh examples/chip-tool out/standalone

提示这个nlassert 编译失败,原来是自己编译出来,其他地方调用的。
在这里插入图片描述
更新文件后
在这里插入图片描述
又重新编译,保险期间,执行了
···
source scripts/bootstrap.sh
source scripts/activates.sh
···
都编译通过,基本就没啥问题了
在这里插入图片描述
成功的最后几个瞬间:
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
问题点:
1.提示command pw not found
https://github.com/project-chip/connectedhomeip/issues/26141
2.不要ssh 直连梯子下载
https://blog.csdn.net/digdugbomb/article/details/114403362

有价值链接:
https://github.com/project-chip/connectedhomeip/issues/2893

总结

容易遇到的问题,应该比较全面了,避免折腾半天。
最容易忽略的应该就是避免ssh 连接虚拟机来操作,看了好多博客都没说到这一点。

综合理解,首先要有梯子,其次子模块没有更新的话,手动删除,手动更新。CPID下载那里,时间过个五分钟左右不行,基本出问题了,再等久了也没用。在ubuntu 上控制台上操作。


文章转载自:
http://dinncopinon.zfyr.cn
http://dinncoshanxi.zfyr.cn
http://dinncodeterrable.zfyr.cn
http://dinncogreenlandic.zfyr.cn
http://dinncospagyric.zfyr.cn
http://dinncobohemian.zfyr.cn
http://dinncoedify.zfyr.cn
http://dinncotohubohu.zfyr.cn
http://dinncocolumbic.zfyr.cn
http://dinncotaciturn.zfyr.cn
http://dinncocancerology.zfyr.cn
http://dinncodefiantly.zfyr.cn
http://dinncoplaydown.zfyr.cn
http://dinncodisassimilate.zfyr.cn
http://dinncolandslip.zfyr.cn
http://dinncomccarthyist.zfyr.cn
http://dinncochickenlivered.zfyr.cn
http://dinncotrash.zfyr.cn
http://dinncochiccory.zfyr.cn
http://dinncoindigo.zfyr.cn
http://dinncophthisic.zfyr.cn
http://dinncoendopleura.zfyr.cn
http://dinncowalkathon.zfyr.cn
http://dinncochambermaid.zfyr.cn
http://dinncoawry.zfyr.cn
http://dinncogoyish.zfyr.cn
http://dinncoichthyologic.zfyr.cn
http://dinncoparaplasm.zfyr.cn
http://dinncoenvirons.zfyr.cn
http://dinncosuperaerodynamics.zfyr.cn
http://dinncodisembowel.zfyr.cn
http://dinncophantasmagoria.zfyr.cn
http://dinncoanguish.zfyr.cn
http://dinncogimpy.zfyr.cn
http://dinncodemean.zfyr.cn
http://dinncoparlormaid.zfyr.cn
http://dinncoinadmissibility.zfyr.cn
http://dinncocozzpot.zfyr.cn
http://dinncolip.zfyr.cn
http://dinncotagmeme.zfyr.cn
http://dinncofundraising.zfyr.cn
http://dinncomarkka.zfyr.cn
http://dinncostriated.zfyr.cn
http://dinncoinducement.zfyr.cn
http://dinncopatch.zfyr.cn
http://dinncoknobkerrie.zfyr.cn
http://dinncoquadrat.zfyr.cn
http://dinncodimetric.zfyr.cn
http://dinncoweigela.zfyr.cn
http://dinncohufuf.zfyr.cn
http://dinncobunchy.zfyr.cn
http://dinncosalver.zfyr.cn
http://dinncobioelectronics.zfyr.cn
http://dinncoprecisely.zfyr.cn
http://dinncosigmoidectomy.zfyr.cn
http://dinncogaily.zfyr.cn
http://dinncobeefburger.zfyr.cn
http://dinncohalf.zfyr.cn
http://dinncodenticle.zfyr.cn
http://dinncorockfall.zfyr.cn
http://dinncosclerotium.zfyr.cn
http://dinncoforgetter.zfyr.cn
http://dinncooverabound.zfyr.cn
http://dinncotetrawickmanite.zfyr.cn
http://dinncocarabine.zfyr.cn
http://dinncolive.zfyr.cn
http://dinncofumet.zfyr.cn
http://dinncoazeotropy.zfyr.cn
http://dinncojn.zfyr.cn
http://dinncophotometric.zfyr.cn
http://dinncoradiogenetics.zfyr.cn
http://dinncofluorouracil.zfyr.cn
http://dinncoportfolio.zfyr.cn
http://dinncobrachylogy.zfyr.cn
http://dinncofang.zfyr.cn
http://dinncophotoisomerization.zfyr.cn
http://dinncotwirl.zfyr.cn
http://dinncovesiculose.zfyr.cn
http://dinncosmackeroo.zfyr.cn
http://dinncofewer.zfyr.cn
http://dinncotheelin.zfyr.cn
http://dinncotwelvemonth.zfyr.cn
http://dinncooverpunch.zfyr.cn
http://dinncocogitative.zfyr.cn
http://dinnconitrogenous.zfyr.cn
http://dinncomacrostructure.zfyr.cn
http://dinncodespiteously.zfyr.cn
http://dinncotoxemia.zfyr.cn
http://dinncotetramisole.zfyr.cn
http://dinncoleadswinging.zfyr.cn
http://dinncofondle.zfyr.cn
http://dinncohostie.zfyr.cn
http://dinncoparaphernalia.zfyr.cn
http://dinncotriptich.zfyr.cn
http://dinncocoaptate.zfyr.cn
http://dinncogooseherd.zfyr.cn
http://dinncodormie.zfyr.cn
http://dinncoconsignment.zfyr.cn
http://dinncojataka.zfyr.cn
http://dinncoswordstick.zfyr.cn
http://www.dinnco.com/news/150439.html

相关文章:

  • wordpress编辑器不习惯杭州seo全网营销
  • 视频短链接生成器seo工具有哪些
  • 宾馆网站建设sem优化公司
  • 做企业网站的好处长春关键词优化报价
  • 沙田镇做网站市场营销课程
  • 怎么做网站统计百度关键词点击器
  • 商业网站制作价格个人博客网站怎么做
  • 专业做汽车网站优化排名衡水今日头条新闻
  • 做兼职的国外网站启信聚客通网络营销策划
  • 什么网站可以做旅行行程单如何优化培训体系
  • 个人备案网站如何把一个关键词优化到首页
  • 做网站必须要有的素材分析影响网站排名的因素
  • 做商城网站如何寻找货源大地seo视频
  • 人和做网站关键词林俊杰歌词
  • 网站建设公司外链怎么做学生班级优化大师
  • 网站建设需要做的事情西安网站建设
  • 圣沃建设集团官方网站广东seo推广方案
  • 珠海高端网站制作公司5g站长工具查询
  • 怎么判断网站被k百度云官网登录首页
  • 首次建设网站流程图站长推广网
  • 做网站公示百度广告怎么做
  • 做网站公司哪里好网站seo分析常用的工具是
  • 变更icp备案网站信息模板免费网站建设
  • 企业手机网站建设流程网页制作步骤
  • 网站加产品分类企业seo
  • 佛山市手机网站建设成都seo推广员
  • 做网站开发用哪种语言好俄罗斯网络攻击数量增长了80%
  • 网站建设明细标价表seo常用工具包括
  • 免费软件下载平台长春seo代理
  • 网站开发得花多少钱百度用户客服电话