Last active
November 18, 2016 09:41
-
-
Save Jim-Holmstroem/88f1bfdc627ece138421b0110e29fe35 to your computer and use it in GitHub Desktop.
Python Appium on Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo npm install -g appium-doctor | |
appium-doctor # find out what is missing, like JAVA_HOME=/usr/lib/jvm/java-7-openjdk | |
# alternative (via git) | |
git clone [email protected]:appium/appium.git | |
cd appium | |
npm install | |
cd - | |
# otherwise | |
sudo npm install -g appium --no-shrinkwrap # ensure that it has [email protected] or newer as depency (because of bug, https://github.com/appium/appium/issues/6978) | |
sudo pip install Appium-Python-Client | |
appium # start appium |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment