简体   繁体   中英

Can't install ssh2-python wheel file with python 3.8 although it's for python3.8

I have the wheel file called ssh2_python-0.23.0-cp38-cp38-win_amd64.whl downloaded, and from my understanding the cp38 part means that it has to be installed with python 3.8 and that the win_amd64 part means that its for windows with an 64 bit architechture(which i have).

But if i try to install it with python -m pip install ssh2_python-0.23.0-cp38-cp38-win_amd64.whl i get the following error message: ERROR: ssh2_python-0.23.0-cp38-cp38-win_amd64.whl is not a supported wheel on this platform.

Output of python -V : Python 3.8.5

I'm running the commands in a conda enviroment, does this make a difference?

ssh2_python-0.23.0-cp38-cp38-win_amd64.whl is a wheel for 64-bit Python. It seems you have 32-bit Python. Either install 64-bit Python or use a 32-bit wheel.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM