-1

I have seen discussion, but I'm doing pipenv run pip3 install Resources/UI_Mgmtpackage/*.whl which the case is slightly different (than normal pip install)

that I'm importing program from personal file , set up machine enter image description here

seems is also the python version not fit, what else can I input instead?

1 Answers1

3

python is 3.8 and you are trying to install a cp36, i.e. python 3.6 whl which is incompatible. Make sure to use python 3.6 or download a cp38 whl file

FlyingTeller
  • 17,638
  • 3
  • 38
  • 53
  • so, if I redownload the python version to python 3.6, then `pipenv run pip3 install Resources/UI_Mgmtpackage/*.whl` could the problem? – 080_coder_from_jap Sep 01 '23 at 07:57
  • 1
    you need to download and install python3.6 and install pipenv to that. Make sure that that you are actually calling pipenv for python 3.6 – FlyingTeller Sep 01 '23 at 08:15