Skip to content

Commit

Permalink
add XlsxWriter package just in case GPT would like to use it for writ…
Browse files Browse the repository at this point in the history
…ing excel files
  • Loading branch information
dasmy committed Jan 18, 2024
1 parent f25a150 commit dfa91a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ RUN pip install \
"rdkit>=2023.3.3" \
"scipy>=1.11.1" \
"scikit-learn>=1.3.0" \
"wordcloud>=1.9.3"
"wordcloud>=1.9.3" \
"XlsxWriter>=3.1.9"

RUN mkdir backendbuild
WORKDIR /backendbuild
Expand Down
1 change: 1 addition & 0 deletions gpt_code_ui/kernel_program/kernel_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ def create_venv(venv_dir: pathlib.Path, install_default_packages: bool) -> pathl
"scipy==1.11.1",
"scikit-learn==1.3.0",
"wordcloud>=1.9.3",
"XlsxWriter>=3.1.9",
]
subprocess.run([venv_python_executable, '-m', 'pip', 'install'] + default_packages)

Expand Down

0 comments on commit dfa91a3

Please sign in to comment.