When I insert the code(pip install msvc-runtime) in Powershell,
An error occur error: Could not find a version that satisfies the requirement msvc-runtime(from versions:none) ERROR: No matching distribution found for msvc-runtime
How can I get the msvc-runtime package??
I've been tried every way I can But I coudln't find a solution. In Window Powershell, I tried pip install msvc-runtime, and I even tried setting environment variables through Googling to where the bin folder was, but it didn't work at all.
How can I get the msvc-runtime package??
I use vscode
I can install either cmd or powershell successfully by command pip install msvc-runtime
.
I don't know for what reason you can't install, but I suppose you can download the .whl
file directly in Pypi and install the package manually.
You could install the package by command pip install whlName.whl
or pip install PATH/TO/whlName.whl
after you installing the .whl
file.