Add typing_extensions to searxng venv to fix build failure#985
Open
samirsheldenkar wants to merge 1 commit intoItzCrazyKns:masterfrom
Open
Add typing_extensions to searxng venv to fix build failure#985samirsheldenkar wants to merge 1 commit intoItzCrazyKns:masterfrom
samirsheldenkar wants to merge 1 commit intoItzCrazyKns:masterfrom
Conversation
|
Someone should push this lmao, ty my man! |
hobostay
added a commit
to hobostay/Perplexica
that referenced
this pull request
Feb 13, 2026
Fixes ItzCrazyKns#985 ## Problem Docker build fails when installing SearXNG with error: ``` ModuleNotFoundError: No module named 'typing_extensions' ``` This occurs because SearXNG requires `typing_extensions` as a dependency, but it was not being installed in the searxng venv before attempting to install SearXNG itself. ## Solution Add `typing_extensions` to the list of packages installed in the searxng virtual environment before installing SearXNG. ## Changes **Dockerfile**: - Added `typing_extensions` to the pip install command at line 57 ## Testing Docker build now completes successfully without the `typing_extensions` error. ## Impact - **Low Risk**: Only adds a missing dependency that SearXNG requires - **Fixes**: Docker build failure for all users - **Compatibility**: No breaking changes ## Before ```dockerfile RUN "/usr/local/searxng/searx-pyenv/bin/pip" install --upgrade pip setuptools wheel pyyaml msgspec ``` ## After ```dockerfile RUN "/usr/local/searxng/searx-pyenv/bin/pip" install --upgrade pip setuptools wheel pyyaml msgspec typing_extensions ```
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Docker build failed with error as below due to missing typing_extensions in searxng venv. Updated Dockerfile to include this.