grobid_client_python: ERROR: GROBID server does not appear up and running

Hello,

I am trying to install the python version of Grobid and I have python 3.7.5 and linux machine I have installed the project into a directory, and I am getting the following error after entering the CLI: grobid_client --input /home/laurent/Documents/test_file_ETL_DE_BE/test_grobid processFulltextDocument ``GROBID server does not appear up and running, the connection to the server failed Any idea where the error is coming from? Thank you for your help. Laurent

About this issue

  • Original URL
  • State: closed
  • Created 3 years ago
  • Comments: 15 (5 by maintainers)

Most upvoted comments

@Umar888 usually this problem comes from the docker run, the port need to be mapped:

docker run -t --rm --init -p 8070:8070 lfoppiano/grobid:0.7.1

see https://grobid.readthedocs.io/en/latest/Grobid-docker/#crf-only-image

Oh nice, its indeed working!

Thank you! Laurent