How to upgrade Appium from command line for Mac?

Hi,

I am using Appium on Mac. I want to upgrade my Appium driver from 1.2.1 to 1.2.3. But there is no dmg file has been posted yet. Can I upgrade it through command line and how?

You can use npm and install any version:

sudo npm install [email protected]

1 Like

If you want to update the appium use this command: (this is not for updating the dmg). Tested on mac, it working.

Open your terminal and enter the below command, this will install the latest version of Appium. Don’t use sudo.

npm install appium -g

YouTube video with steps:
https://www.youtube.com/watch?v=PZeldbQDYOo

2 Likes