Paramiko installation issue

MRAB python at mrabarnett.plus.com
Tue Jun 29 15:15:13 EDT 2021


On 2021-06-29 15:01, Sourav Bose wrote:
> Hello,
>   I was using Python 3.8  32 bit ,but while trying to install the paramiko
> there is some wheel issue I'm facing. definitely it is due to version
> mismatching of the python and the paramiko.
> I have uninstalled 3.8
> Could you please help me by providing the exact paramiko files for 3.8 then
> i will again try to install it other wise check the below paramiko files
> and let me know which python version is compatible with this.
> Paramiko files :-
> pycparser-2.20-py2.py3-none-any.whl  -- Installed
> six-1.16.0-py2.py3-none-any.whl -- Installed
> PyNaCl-1.4.0-cp37-cp37m-win_amd64.whl -- error
> cryptography-3.4.7-cp36-abi3-win_amd64.whl --error
> cffi-1.14.5-cp37-cp37m-win_amd64.whl -- error
> bcrypt-3.2.0-cp36-abi3-win_amd64.whl -- error
> paramiko-2.7.2-py2.py3-none-any.whl --error
> 
> Please help me to get the exact version.
> 
If the name contains "cp37" then it's for CPython 3.7, and so on.

Install the Python version (ideally the latest version) and then use the 
python launcher, "py".

For example, if you installed Python 3.9, typing:

     py

on the Windows command line (in a Command Prompt window) should start it.

 From the Windows command line, install the packages by calling the pip 
module via the Python launcher:

     py -m pip install paramiko

and so on. That should pick up and install the correct version.


More information about the Python-list mailing list