
最全Qt for WebAssembly 环境搭建 - Windows新手入门(2),2024年最新大数据开发面试问题和答案
会成生id_rsa和id_rsa.pub两个文件,用笔记本打开id_rsa.pub,复制全部内容。这里是产生rsa的目录,笔者这里是D:/WASM/rsa。笔者用的是Qt6.6,所以安装3.1.37。粘贴到下面这个Key里面。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上大数据知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新
merge Join two or more development histories together
rebase Reapply commits on top of another base tip
reset Reset current HEAD to the specified state
switch Switch branches
tag Create, list, delete or verify a tag object signed with GPG
collaborate (see also: git help workflows)
fetch Download objects and refs from another repository
pull Fetch from and integrate with another repository or a local branch
push Update remote refs along with associated objects
‘git help -a’ and ‘git help -g’ list available subcommands and some
concept guides. See ‘git help ’ or ‘git help ’
to read about a specific subcommand or concept.
See ‘git help git’ for an overview of the system.
出现这么一堆就是安装好了Git。
##### 2.2.2 配置Git环境
1配置用户名
git config --global user.name YourUserName
2配置邮箱
git config --global user.email YourEMail
3查看配置是否OK
git config --global --list
4生成ssh
ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (C:\Users\china/.ssh/id_rsa):
这里是产生rsa的目录,笔者这里是D:/WASM/rsa
会成生id_rsa和id_rsa.pub两个文件,用笔记本打开id_rsa.pub,复制全部内容。
粘贴到下面这个Key里面
5测试配置是否成功
ssh -T git@github.com
6正常是出现Success

##### 2.2.3解决git@github.com: Permission denied (publickey)
参考文章<https://blog.csdn.net/qq_40047019/article/details/122898308>
1生成ssh key
ssh-keygen -t rsa -C “xx@example.com”
2
ssh -v git@github.com
3
ssh-agent -s
4
ssh-add ~/.ssh/id_rsa
失败的话
4.1
eval ssh-agent -s
4.2
ssh-add ~/.ssh/id_rsa
5
ssh -T git@github.com
### 3 安装em++编译器
使用CMD、PowerShell等
1进入D盘
d:
2从Git获取emsdk保存到D盘
git clone https://github.com/emscripten-core/emsdk.git
3进入emsdk文件夹
cd emsdk
4获取emsdk最新版
git pull
5查看可用版本和已安装版本
emsdk list
5.1如果没有安装Python,或者没有把Python添加到系统环境变量,在cmd中emsdk是没有反应的,在PowerShell中提示没有权限,所以一开始就要安装Python。
6安装emsdk
6.1安装最新版
emsdk install latest
6.2激活
emsdk activate latest
6.3Qt for WebAssembly有自己支持的版本,要对应安装
Qt 6.2-- 2.0.14
Qt 6.3-- 3.0.0
Qt 6.4-- 3.1.14
Qt 6.5-- 3.1.25
Qt 6.6-- 3.1.37
笔者用的是Qt6.6,所以安装3.1.37
emsdk install 3.1.37
emsdk activate 3.1.37
7再次查看已安装的组件
emsdk list
8激活环境变量
emsdk_env.bat
9查看em++版本
em++ --version
## 二、Qt配置编译器

## 三、参考链接
1、Qt官方
<https://doc.qt.io/qt-6/wasm.html>
2、Git下载
<https://git-scm.com/downloads>
3、emscripten官方
<https://emscripten.org/docs/getting_started/downloads.html#sdk-download-and-install>
4、CSDN相关文章
<https://blog.csdn.net/qq_45026254/article/details/107286026>
<https://blog.csdn.net/huangqqdy/article/details/83032408>
<https://blog.csdn.net/huangqqdy/article/details/83032408>


**网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。**
**[需要这份系统化资料的朋友,可以戳这里获取](https://bbs.csdn.net/topics/618545628)**
**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**
资料的朋友,可以戳这里获取](https://bbs.csdn.net/topics/618545628)**
**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**
更多推荐
所有评论(0)