Luan Henning
Luan Henning
You can now use `git flow delete `
@elissonnog On the webdriverdownloader.py you change the line 320 from `filename = [name for name in filenames if os_name + bitness in name]` to `filename = [name for name in...
A consideration: Maybe we should do something like `filename = [name for name in filenames if os_name + bitness in name and name[-7:] == '.tar.gz' ]` this seems slightly more...
@nupator try pasting this in the command line `pip show webdriverdownloader` this will give you some information about the webdriverdownloader package, including the path where it's located.
@nupator looks like the package is installed on `/usr/local/lib/python3.8/dist-packages/` Try to go there and use the ls command to see what's in there. Maybe navigating like this you can find...
@nupator ok so, the cd command should be used to change the directory. As you specified the path to a .py file, it won't work cause it's a .py file...