Skip to content

Commit 763e2db

Browse files
authored
Stop trying to install multiprocessing in notebook (#150)
While multiprocessing exists on PyPI, it's a backport of a standard library module for Python 2 that was last updated in 2009. More importantly, it fails to install on Colab.
1 parent 4a46d44 commit 763e2db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebooks/integrations/hugging-face/loading-model-from-hugging-face.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"outputs": [],
4646
"source": [
4747
"# install packages\n",
48-
"!python3 -m pip install -qU sentence-transformers eland elasticsearch transformers multiprocessing\n",
48+
"!python3 -m pip install -qU sentence-transformers eland elasticsearch transformers\n",
4949
"\n",
5050
"# import modules\n",
5151
"import pandas as pd, json\n",

0 commit comments

Comments
 (0)