怎么在github上部署wiki
答案:2 悬赏:0 手机版
解决时间 2021-02-15 18:06
- 提问者网友:我们很暧昧
- 2021-02-15 03:55
怎么在github上部署wiki
最佳答案
- 五星知识达人网友:酒醒三更
- 2021-02-15 05:21
申请帐号,填写ssh公钥,然后会使用命令行最好,建立本地仓库,然后git push就是。 github的wiki应该说明了的。或者网上应该有中文的截图教程。
全部回答
- 1楼网友:人间朝暮
- 2021-02-15 06:58
for ubuntu
注意事项: 请勿直接使用 root 用户,请使用带有 sudo 权限的普通用户安装 testrpc 和 truffle。
sudo apt-get update
# 安装系统依赖
sudo apt-get install build-essential git openssl
# 安装 nodes
curl -sl https://deb.nodesource.com/setup_5.x | sudo -e bash -
sudo apt-get install nodejs
# 修复 npm 全局安装的文件权限问题
mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
# 设置 bash 环境变量
echo [[ -s "$home/.profile" ]] && source $home/.profile' >> ~/.bash_profile
echo 'export path=~/.npm-global/bin:$path' >> ~/.profile
source ~/.profile
# 安装 testrpc
npm install -g ethereumjs-testrpc
# 安装 truffle
npm install -g truffle
for mac
# 安装 mac 环境下的编译套件
xcode-select --install
# 安装 brew
/usr/bin/ruby -e "$(curl -fssl https://raw.githubusercontent.com/homebrew/install/master/install)"
# 安装 nvm
brew update
brew install nvm
source $(brew --prefix nvm)/nvm.sh
echo "source $(brew --prefix nvm)/nvm.sh" >> ~/.profile
# 通过 nvm 安装 node
nvm install v5.11.1
nvm alias default 5.11.1
# 安装 testrpc
npm install -g ethereumjs-testrpc
# 安装 truffle
npm install -g truffle
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯