其他分享
首页 > 其他分享> > cosmos-starport 安装与启动

cosmos-starport 安装与启动

作者:互联网

安装 Starport

三个前提条件:

1.脚本获取二进制文件(科学上网)

curl https://get.starport.network/starport! | bash

2.macOS with Homebrew

brew install tendermint/tap/starport

3.Build from source

git clone https://github.com/tendermint/starport && cd starport && make

This will build and install starport binary into $GOBIN.

快速启动

starport app github.com/foo/mychain

cd mychain

starport serve

遇见的问题

在这里插入图片描述

需要将packr2命令放在全局中

在这里插入图片描述

Go 1.14版本编译出现问题 需要1.15+版本

在这里插入图片描述

ubuntu环境安装 Protocol Buffer compiler 出现问题

protoc-gen-gocosmos无法找到

sudo apt install -y protobuf-compiler

尝试使用 go get进行安装

go get -u github.com/golang/protobuf/{proto,protoc-gen-go}

标签:protoc,get,starport,https,go,cosmos,安装,compiler
来源: https://blog.csdn.net/lk2684753/article/details/113849295