INSTALLING PARAMIKO IN MAC

We’ve struggle multiple times installing paramiko in Mac, even after installing we came across certain issues like module not found.

In this post we will be focussing on how to install paramiko on mac.

Paramiko is a Python (2.7, 3.4+) implementation of the SSHv2 protocol  which provide both client and server functionality. While it leverages a Python C extension for low level cryptography (Cryptography), Paramiko itself is a pure Python interface around SSH networking concepts.

First we will install paramiko using pip. Navigate to terminal and type –

$ pip install paramiko 

To install paramiko library under user directory, use the below command

$ pip install --user paramiko

Even after this if you get error like “module not found” you can try the below command,

Use pip3 to install Python 3 modules.
$ sudo -H pip3 install paramiko --ignore-installed 
$ sudo -H pip install paramiko --ignore-installed

For more insights on paramiko refer this.

Comment out your queries/doubts or post your questions on contact us page.

Leave a Reply

Please log in using one of these methods to post your comment:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s