instapy-quickstart icon indicating copy to clipboard operation
instapy-quickstart copied to clipboard

RuntimeError: Error, unable to determine correct filename for 64bit macos

Open Unstoppablefart opened this issue 3 years ago • 1 comments

Hi I got this error when running main.py in pycharm I have already changed this line filename = [name for name in filenames if os_name + bitness in name ] to filename = [name for name in filenames if os_name + bitness in name and name[-3:] != 'asc' ] or even this filename = [name for name in filenames if os_name + bitness in name and name[-7:] == '.tar.gz' ] and it is still giving me the same error. Have anyone experienced the same?

Unstoppablefart avatar Apr 10 '21 13:04 Unstoppablefart

I solved it with brew install geckodriver

bestark avatar Apr 21 '21 12:04 bestark