instapy() Message: Expected browser binary location

Viewed 118

Hi guys this is my code

from instapy import InstaPy
session=InstaPy(username='login' , password='password')
session.login()

and this is my exception:

Message: Expected browser binary location, but unable to find binary in default location, no 'moz:firefoxOptions.binary' capability provided, and no binary flag set on the command line
1 Answers

I went thru the same issue.

I found out that Instapy doesn't work with Chrome but only with Firefox.

After installing Firefox everything ran smoothly.

Related