Skip to content

Commit 83b184a

Browse files
authored
Resolved the issue with pip version that didn't allow to install Pyth… (#102)
* Resolved the issue with pip version that didn't allow to install Python dependencies * Resolved the ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
1 parent 627eca3 commit 83b184a

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

1_experiment_train.ipynb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@
3030
"scrolled": true
3131
},
3232
"outputs": [],
33-
"source": "!pip install onnx==1.17.0 onnxruntime==1.19.2 tf2onnx==1.16.1"
33+
"source": [
34+
"!pip install --upgrade pip\n",
35+
"!pip install onnx==1.17.0 onnxruntime==1.19.2 tf2onnx==1.16.1"
36+
]
3437
},
3538
{
3639
"cell_type": "markdown",

4_grpc_requests_multi_model.ipynb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"metadata": {},
2828
"outputs": [],
2929
"source": [
30+
"!pip install --upgrade pip\n",
3031
"!pip install grpcio grpcio-tools"
3132
]
3233
},

0 commit comments

Comments
 (0)