Python - Install Paramiko on Windows and Linux Last Updated : 11 Apr, 2023 Summarize Comments Improve Suggest changes Share Like Article Like Report 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. InstallationOn 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: Comment More infoAdvertise with us Next Article How to Install Python-pymarc package on Linux? P pratapworkmail Follow Improve Article Tags : Linux-Unix python-modules how-to-install Similar Reads How to Install Packages in Python on Linux? To install a package in python, we use pip. The pip is a python package manager. In this tutorial, we will be discussing how we can install packages in python on a Linux system. To install packages in python on Linux, we must have python and pip installed on our Linux machine. As python comes preins 2 min read How to Install PyGTK in Python on Windows? PyGTK is a Python package or module that enables developers to work with GTK+ GUI Toolkit. This is how WikiBooks describes GTK+: "GTK+ is a highly usable, feature rich toolkit for creating graphical user interfaces which boasts cross platform compatibility and an easy to use API." And this is how gt 5 min read How to Install Python-pymarc package on Linux? Pymarc is a python package for working with bibliographic data encoded in MARC21. Pymarc provides an API for reading, writing, and revising MARC records. It was mostly designed to be an emergency eject seat, forgetting your data assets out of MARC and into some kind of more rational representation. 2 min read How to Install Python-web2py package on Linux? Web2py is a Python package that helps web developers to create dynamic online content. Although a web developer may construct a form from scratch if necessary, Web2py is meant to assist decrease tiresome web development activities like building web forms from scratch. So, in this article, we'll use 2 min read How to Install Kaleido in Python on Windows? Kaleido is a cross-platform Python library for providing useful functions for generating static images such as jpg, png, SVG, and even pdf for web-based visualization libraries like Plotly. It provides a low-level Python API specially designed for use with high-level plotting libraries such as Plotl 2 min read How to Install Python-send2trash package on Linux? Send2Trash in Python is a small package that sends files to the Trash (or Recycle Bin) natively and on all platforms like Windows, Linux, and macOS. Rather than deleting files, permanently this package sends the files in the trash box. So, in this article, we will be installing the Send2Trash packag 1 min read Like