installation of prodigy on Windows 10

I am not able to install prodigy. I get the follwing errror when I enter the command :pip install prodigy-1.11.14-cp310-cp310-win_amd64.whl -f ./ --no-index

ERROR: Could not find a version that satisfies the requirement plac<1.2.0,>=0.9.6 (from prodigy) (from versions: none)
ERROR: No matching distribution found for plac<1.2.0,>=0.9.6

Other versions I get the error: ERROR: prodigy-1.11.14-cp37-cp37-win_amd64.whl is not a supported wheel on this platform. I have tried 38,39 as well.

I am on Windows 10 AMD-64

That's strange. It might be that it's having trouble with the particular wheel.

Just to check, does the pip install work for your? The one described here?

Also, when you run python what version of Python do you see?

Thank you for your help Koaning. I am on version 3.10.9.

I can only install whl file locally. so I used the following command from the console where my whl files are located.
pip install prodigy-1.11.14-cp310-cp310-win_amd64.whl -f ./ --no-index

I get the following response:

(base) C:\Users\vsharm12\prodigy\prodigy-1.11.14-windows\windows>pip install prodigy-1.11.14-cp310-cp310-win_amd64.whl -f ./ --no-index
Looking in links: ./
Processing c:\users\vsharm12\prodigy\prodigy-1.11.14-windows\windows\prodigy-1.11.14-cp310-cp310-win_amd64.whl
Requirement already satisfied: spacy<3.6.0,>=3.1.1 in c:\users\vsharm12\appdata\local\anaconda3\lib\site-packages (from prodigy==1.11.14) (3.5.3)
Requirement already satisfied: wasabi in c:\users\vsharm12\appdata\local\anaconda3\lib\site-packages (from prodigy==1.11.14) (1.1.2)
Requirement already satisfied: srsly<3.0.0,>=2.0.0 in c:\users\vsharm12\appdata\local\anaconda3\lib\site-packages (from prodigy==1.11.14) (2.4.6)
Requirement already satisfied: catalogue in c:\users\vsharm12\appdata\local\anaconda3\lib\site-packages (from prodigy==1.11.14) (2.0.8)
Requirement already satisfied: toolz<1.0.0,>=0.8.2 in c:\users\vsharm12\appdata\local\anaconda3\lib\site-packages (from prodigy==1.11.14) (0.12.0)
INFO: pip is looking at multiple versions of prodigy to determine which version is compatible with other requirements. This could take a while.
ERROR: Could not find a version that satisfies the requirement plac<1.2.0,>=0.9.6 (from prodigy) (from versions: none)
ERROR: No matching distribution found for plac<1.2.0,>=0.9.6

Just to confirm, the installation that uses the license key in the pip command does not work?

pip install prodigy -f https://<YOUR LICENSE KEY>@download.prodi.gy

I'm suggesting this because this way pip takes care of fetching the correct wheel. This does not work?

I cannot go to the internet to fetch the whl files so when i bought prodigy , they gave me 4 whl files. 36-36 to 310-310.

I was trying to install 310 using the command above and could not install it .

pip install prodigy-1.11.14-cp310-cp310-win_amd64.whl -f ./ --no-index

It looks like the problem is plac which is a dependency of Prodigy. Just curious - can you try to only install plac on its own: pip install plac?

Since you can't pip install prodigy - I'm wondering if plac may be blocked too.

It is possible to install Prodigy on airtight environment. Here's a post:

You would need to install each of the dependencies separately. Perhaps try this first because if you find for whatever reason you can't install those dependencies like plac, it's a bit of a non-starter to think about Prodigy.

The post itself is a little out-of-date, so here's v1.11.14's current dependencies:

spacy>=3.1.1,<3.6.0
wasabi
srsly>=2.0.0,<3.0.0
catalogue
toolz>=0.8.2,<1.0.0
plac>=0.9.6,<1.2.0
requests
pydantic>=1.10.4,<2.0
fastapi>=0.65.1,<0.95.1
aiofiles
uvicorn>=0.13.3,<0.19.0
peewee>=3.12.0,< 3.17.0
cachetools>=4.2
pyjwt<3.0.0,>=2.0.0
uvloop<=0.14.0; python_version < "3.7" and platform_system != "Windows"
jinja2
python-dotenv>=0.21.1,<2.0.0
typeguard>=3.0.2,<4.0
tqdm>=4.38.0,<5.0.0
typing_extensions<4.6.0

Does this help?

Thank you Ryan. I will try and get back.

Thanks Ryan. I was able to install prodigy. I installed all the dependencies first and then installed prodigy through the whl file.

Thank you again for help !