IPFS的Python API参考手册
摘要:ipfshttpclient安装 # 下载git上资源 git clone https://github.com/ipfs/py-ipfs-http-client.git cd py-ipfs-http-client # 将ipfs-api-client链接到你的Python路径 vim /etc/
阅读全文
ipfs python接口
摘要:ipfshttpclient安装 # 下载git上资源 git clone https://github.com/ipfs/py-ipfs-http-client.git cd py-ipfs-http-client # 将ipfs-api-client链接到你的Python路径 vim /etc/
阅读全文
ipfs后台启动
摘要:ipfs后台启动 cd /usr/lib/systemd/system vim ipfs.service [Unit] Description=IPFS daemon After=network.target [Service] Environment=IPFS_PATH=/usr/local/ip
阅读全文
ipfs 设置私有网络
摘要:ipfs 设置私有网络 ipfs bootstrap rm --all # 删除有节点 https://mp.weixin.qq.com/s?__biz=MzUwOTE3NjY3Mw==&mid=2247483971&idx=1&sn=0c59f248a97fe96bd724fbc558471b18
阅读全文
ipfs 基础操作
摘要:1 上次和下载图片 ipfs add init.jpg # 上次文件 ipfs get /ipfs/your_hash > init.jpg # 下载资源 your_hash你的嘻哈值 init.jpg 下载文件重命名 ipfs cat /ipfs/your_hash > init.jpg # 下载
阅读全文
ipfs修改配置文件
摘要:1 ipfs修改配置文件 ipfs config show # 显示配置信息 设置默认编辑器 which vim # 查找vim路径 vim /etc/profile export EDITOR=/usr/bin/vim # 设置环境变量 ipfs config edit # 编辑ipfs配置信息
阅读全文
centos7下搭建IPFS环境
摘要:1 首先安装go环境 yum -y install gcc automake autoconf libtool make gcc gcc-c++ git mkdir /usr/local/go && cd /usr/local/go wget https://dl.google.com/go/go1
阅读全文