How to bring latest platform version for andorid in APPIUM GUI?

@Sanjay_Sharma

Sanjay

Commands are same for windows System as well. But here are some prerequisites you need to follow to execute above commands. I will recommend using Node.js to install command line appium tool.

1. Download Node.js msi installer for your windows machine(32/64 bit).
2. Install Node.js in your windows machine.
3. Set up the node Path in your Env.path variables.
4. Type Node -v in your command line tool.
5. Type npm -v in cmd.

Follow this link for Node.js and npm installation.

If every thing goes fine you will see respective version number installed on your machine.

Now you are ready to install appium command line tool using npm (Node Package Manager).

Use Below Commands to install.

npm install -g appium

this will install latest version of appium which is 1.6.3 currently.

If you are interested in some specific version, you can try below command

npm install -g appium@versionNumber

e.g.

npm install -g [email protected]

To remove appium try below command

npm uninstall -g appium

-g stands for global

Hope this will help.

Regards
Ravi Kumar