Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Python – Install Paramiko on Windows and Linux

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The high-level python API starts with the creation of a secure connection object. To have more direct control and pass a socket to transport to start remote access. As a client, it’s authenticating using a user credential or private key, and checking the server’s host key. 

Paramiko is a Python library that makes a connection with a remote device through SSh. Paramiko is using SSH2 as a replacement of SSL to make a secure connection between two devices. It also supports the SFTP client and server model.

Installation

On Windows

To install Paramiko on Windows using pip run below command on cmd.

pip install paramiko

Output:

To check the installed paramiko run the following:

pip list

Output:

Install paramiko using .whl file offline. To download .whl file https://pypi.org/project/paramiko/#files

pip install paramiko-2.7.2-py2.py3-none-any.whl

Output :

On Linux

Python paramiko can be installed on Linux in many ways, using pip is one of them.

pip install paramiko

Output :

To check the installed paramiko:

pip list --format=json

Output:

My Personal Notes arrow_drop_up
Last Updated : 11 Apr, 2023
Like Article
Save Article
Similar Reads
Related Tutorials