美文网首页
Ubuntu下STF的安装

Ubuntu下STF的安装

作者: 倾倒的吞天壶 | 来源:发表于2017-11-20 14:36 被阅读113次

直接按照官方文档安装即可
再来一篇参考

PS: 如果有因权限问题安装不成功, 可以试一试下面方法:
注: 原文

rethinkdb

source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list
wget -qO- https://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add -

准备

sudo apt-get update
sudo apt-get install git
sudo apt-get install npm
sudo apt-get install rethinkdb
sudo apt-get install android-tools-adb
sudo apt-get install python
sudo apt-get install autoconf
sudo apt-get install automake
sudo apt-get install libtool
sudo apt-get install build-essential
sudo apt-get install ninja-build
sudo apt-get install libzmq3-dev
sudo apt-get install libprotobuf-dev
sudo apt-get install graphicsmagick
sudo apt-get install yasm
sudo apt-get install stow

nodejs

curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs

sudo npm install -g bower karma gulp

mkdir ~/Downloads

ZeroMQ

cd ~/Downloads
wget http://download.zeromq.org/zeromq-4.1.2.tar.gz
tar -zxvf zeromq-4.1.2.tar.gz
cd zeromq-4.1.2
./configure --without-libsodium --prefix=/usr/local/stow/zeromq-4.1.2
make
sudo make install
cd /usr/local/stow
sudo stow -vv zeromq-4.1.2

Google protobuf

cd ~/Downloads
git clone https://github.com/google/protobuf.git
cd protobuf
./autogen.sh
./configure --prefix=/usr/local/stow/protobuf-git rev-parse --short HEAD
make
sudo make install
cd /usr/local/stow
sudo stow -vv protobuf-*

sudo ldconfig

OpenSTF

cd
mkdir openstf
cd openstf/
git clone https://github.com/openstf/stf.git
cd stf
sudo npm install -g stf --unsafe-perm

rethinkdb启动

rethinkdb

OpenSTF启动

stf local

相关文章

  • Ubuntu 下安装STF

    STF项目地址 安装依赖 提示:我已经安装了cmake make g++ build-essential git ...

  • Ubuntu下STF的安装

    直接按照官方文档安装即可再来一篇参考 PS: 如果有因权限问题安装不成功, 可以试一试下面方法:注: 原文 ret...

  • STF笔记

    安装STF 本地搭建能访问外网的ubuntu环境安装virturalbox创建ubuntu虚拟机,需要注意的是网络...

  • Mac安装STF-踩坑记录

    一、 STF安装 1、STF官网:https://github.com/openstf/stf2、安装依赖:bre...

  • Linux(Ubuntu/CentOS)直接安装STF

    参考文章如下: 1.WEB 端批量移动设备管理控制工具 STF 的环境搭建和运行 2.STF环境搭建&运行及踩坑记...

  • HomeBrew自动安装脚本

    前言 来啦老铁! 又到学知识的时候啦,原本想搞一下 STF 的,结果环境没搞定,STF 一直安装不上,为了不让今天...

  • 01 RabbitMQ的安装

    Ubuntu 和 Centos 下安装RabbitMQ Ubuntu 18.0.4安装RabbitMQ 安装Erl...

  • 在Ubuntu18.04上安装Notepad++

    Ubuntu下的安装方法: Ubuntu下的卸载方法:

  • STF安装

    Reference http://www.jianshu.com/p/8632c728325e https://t...

  • STF安装

    linux:14.04权限:root镜像:registry.npm.taobao.org(淘宝镜像)注意:本文汇总...

网友评论

      本文标题:Ubuntu下STF的安装

      本文链接:https://www.haomeiwen.com/subject/mfdvvxtx.html