Move开发环境搭建Move开发环境构建常规有两种方式,第一种是通过源码的方式构建,第二种是通过 docker 的方式构建。本文主要介绍 第一种方式源码构建操作系统要求建议采用如下的操作系统:MacOSUbuntu涉及工具cargoMove-cliMove-analyzerVSCodeVSCode Move插件安装Cargoscurl https://sh.rustup.rs -sSf | sh Tip: 等待安装完成即可安装Move-cli这里的工作目录是 ~/workspace/github/拉取move最新代码~# git clone https://github.com/move-language/move.git 安装Move-cli~# cargo install --path move/language/tools/move-cli 验证安装结果~# move -h move-cli 0.1.0 Diem Association <opensource@diem.com> MoveCLI is the CLI that will be executed b...