ERROR: .FileNotFoundError: [Errno 2] No such file or directory: './docker-compose.maintenance.yml'

Hi guys, I am new to installing kobo on my server, at the end of the installation it shows me the following error
ERROR: .FileNotFoundError: [Errno 2] No such file or directory: './docker-compose.maintenance.yml' An error has occurred

I’m using docker on server with centos 8

Can someone help me please?

Is that file missing?

1 Like

yes, I have done the installation as it says in github, when I am through the last step I get the error

Lo resolví, necesitaba clonar el repositorio kobo-docker, inside kobo-install

1 Like

When you open a file with the name “filename.ext”; you are telling the open() function that your file is in the current working directory . This is called a relative path.

file = open('filename.ext') //relative path

In the above code, you are not giving the full path to a file to the open() function, just its name - a relative path. The error “FileNotFoundError: [Errno 2] No such file or directory” is telling you that there is no file of that name in the working directory. So, try using the exact, or absolute path.

file = open(r'C:\path\to\your\filename.ext') //absolute path

In the above code, all of the information needed to locate the file is contained in the path string - absolute path.

If the user does not pass the full path to the file (on Unix type systems this means a path that starts with a slash), the python file path is interpreted relatively to the current working directory. The current working directory usually is the directory in which you started the program. In order to make this work, the directory containing the python executable must be in the PATH, a so-called environment variable that contains directories that are automatically used for searching executables when you enter a command. In any case, if your Python script file and your data input file are not in the same directory, you always have to specify either a relative path between them or you have to use an absolute path for one of them.