Skip to content

Commit

Permalink
Fix numpy version for macos (#2704)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksandr-mokrov authored Jan 28, 2025
1 parent 769ef5f commit 554738f
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@
"metadata": {},
"outputs": [],
"source": [
"import platform\n",
"\n",
"\n",
"if platform.system() == \"Darwin\":\n",
" %pip install -q \"numpy<2.0.0\"\n",
"\n",
"\n",
"%pip install -q \"nncf>=2.11.0\" \"torch>=2.1\" \"torchvision\" \"timm\" \"opencv_python\" \"pillow\" \"PyYAML\" \"scipy\" \"scikit-image\" \"datasets\" \"gradio>=4.19\" --extra-index-url https://download.pytorch.org/whl/cpu\n",
"%pip install -Uq \"openvino>=2024.3.0\""
]
Expand Down

0 comments on commit 554738f

Please sign in to comment.