I'm trying to import a file using h2o in Python.
h2o.init() is successful, but when I do the following:
df = h2o.import_file(path = "Combined Database - Final.csv")
I get a number of errors that I can't find any help on. Here is the last one that shows up:
H2OConnectionError: Unexpected HTTP error: HTTPConnectionPool(host='127.0.0.1', port=54321): Max retries exceeded with url: /3/Jobs/ $03017f00000132d4ffffffff$_a6edaa906ba7a556a417c13149c940db (Caused by NewConnectionError(': Failed to establish a new connection: [WinError 10048] Only one usage of each socket address (protocol/netw ork address/port) is normally permitted',))
Above it, there are “OSError”, “NewConnectionError”, “MaxRetryError”.
This is my first time using h2o, and I can't even import my data. Any help would be much appreciated!