Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -182,26 +182,55 @@ blinkConverterSettings.CommandLineArguments.Add("--disable-setuid-sandbox");
## Failed to launch chromium: Missing required dependent packages

<table>

<th style="font-size:14px" width="100px">Exception
</th>
<th style="font-size:14px">Failed to launch chromium: Missing required dependent packages
</th>

<tr>
<th style="font-size:14px" width="100px">Reason
</th>
<td>The required dependencies for the Chromium are not installed on the system.
</td>
</tr>

<tr>
<th style="font-size:14px" width="100px">Solution
</th>
<tr>
<th style="font-size:14px" width="100px">Solution
</th>
<td>Ensure all required dependencies for the Chromium are installed on the system. This may include additional libraries or packages.
</td>
Ensure all required dependencies for the Chromium are installed on the system. This may include additional libraries or packages.
Here's how you can modify your Docker file:
{% highlight dockerfile %}
FROM your-base-image

RUN apt-get update && apt-get install -yq --no-install-recommends \
libasound2 \
libatk1.0-0 \
libc6 \
libcairo2 \
libcups2 \
libdbus-1-3 \
libexpat1 \
libfontconfig1 \
libgcc1 \
libgconf-2-4 \
libgdk-pixbuf2.0-0 \
libglib2.0-0 \
libgtk-3-0 \
libnspr4 \
libpango-1.0-0 \
libpangext6 \
libxfixes3 \
libxi6 \
libxrandr2 \
libxrender1 \
libxss1 \
libxtst6 \
libnss3 \
libgbm1 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
{% endhighlight %}
</td>
</tr>

</table>

## Application Crash in Syncfusion 29.X.X Due to Missing `locales` Folder Required by Chromium During HTML Rendering or Conversion
Expand Down Expand Up @@ -1593,4 +1622,5 @@ Refer to the following package reference:
</ItemGroup>

{% endhighlight %}
{% endtabs %}
{% endtabs %}