File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -223,6 +223,20 @@ Installing collected packages: greet-me1
223223Successfully installed greet-me1-0.1.7
224224```
225225
226+ In case you get an error like this :
227+ ``` output
228+ ERROR: Could not find a version that satisfies the requirement requests<3,>=2.32.5 (from pixi-demo1) (from versions: 2.5.4.1)
229+ ERROR: No matching distribution found for requests<3,>=2.32.5
230+ ```
231+
232+ resolve it by adding this extra parameter ` --extra-index-url https://pypi.org/simple/ ` to your ` pip install ` command.
233+ This tells the pip command to also look for packages in the extra URL provided.
234+
235+ ``` bash
236+ pip install -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ greet-me1==0.1.0
237+ ```
238+
239+
226240Then create a test script : ` test_package.py ` :
227241
228242``` python
You can’t perform that action at this time.
0 commit comments