How to download Appium Desktop in Ubuntu 16

吃可爱长大的小学妹 提交于 2019-12-08 20:02:46

1.2.0-beta.2 offers an AppImage for Linux - https://github.com/appium/appium-desktop/releases/

Download it, run chmod a+x on it, and then ./AppImage to execute it.

Offical url: https://github.com/appium/appium-desktop/releases

If you have no idea which file to download, there's a file contains "linux" and end with format "yml", the file name is contained in it.

The file should be an AppImage file as above mentioned, you should change the permission by checking box of "Allow executing file as program" of its "Properties".

And then run "./appiumimagename" in terminal to launch Appium Desktop or install it.

  1. Install node.js without using sudo- if your already installed nodejs using sudo use the below commands to remove from your machine sudo apt-get remove nodejs

sudo apt-get remove npm

2.Download latest nodejs linux binaries from https://nodejs.org/download/release/latest/

3.Now install it under /usr/local using

cd /usr/local sudo mkdir node cd node tar --strip-components 1 -xzf /home/elan/Downloads/node/node-v8.2.1-linux- x64.tar.gz

  1. Add path in ~/.bashrc export PATH=$PATH:usr/local/node/bin

  2. then provide appropriate access permission to the node folder cd usr/local sudo chmod -R 777 node

  3. install appium globally npm install -g appium

  4. install appium doctor to troubleshoot npm install -g appium-doctor

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!