Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install winrmlib via python pip




winrmlib - Python library for Windows Remote Management with CredSSP and NTLMv2, it belongs to Classifiers:

- Environment :: Console
- Intended Audience :: System Administrators
- Natural Language :: English
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3.2
- Programming Language :: Python :: 3.3
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: PyPy
- Topic :: System
- Topic :: System :: Clustering
- Topic :: System :: Distributed Computing
- Topic :: System :: Systems Administration

When you know about this project and you want to new install winrmlib to support your project or you get trouble as ModuleNotFoundError: No module named "winrmlib" or ImportError: cannot import name "winrmlib" in your project, let follow this tutorial to install winrmlib



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_winrmlib_env

- Active the virtual environment

test_winrmlib_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_winrmlib_env

- Active the virtual environment

source test_winrmlib_env/bin/active


Step 2: OK, now, let flow below content to start the installation winrmlib

To install winrmlib on Windows(CMD):

py -m pip install winrmlib

To install winrmlib on Unix/macOs:

pip install winrmlib


Step 3: If you want to install a specific winrmlib version, add ==<winrmlib version> to the end command line

Example:

pip install winrmlib==0.0.2


Please see the version list below table:

VersionReleased dateCommand
winrmlib 1.32015-11-11T11:28:51Windows:

py -m pip install winrmlib==1.3

Unix/macOs:

pip install winrmlib==1.3

winrmlib 1.22015-11-11T11:06:55Windows:

py -m pip install winrmlib==1.2

Unix/macOs:

pip install winrmlib==1.2

winrmlib 1.12015-11-11T10:44:15Windows:

py -m pip install winrmlib==1.1

Unix/macOs:

pip install winrmlib==1.1

winrmlib 1.02015-11-11T10:41:42Windows:

py -m pip install winrmlib==1.0

Unix/macOs:

pip install winrmlib==1.0

winrmlib 0.0.82015-02-04T12:13:09Windows:

py -m pip install winrmlib==0.0.8

Unix/macOs:

pip install winrmlib==0.0.8

winrmlib 0.0.72015-02-03T16:33:11Windows:

py -m pip install winrmlib==0.0.7

Unix/macOs:

pip install winrmlib==0.0.7

winrmlib 0.0.62015-02-03T11:57:53Windows:

py -m pip install winrmlib==0.0.6

Unix/macOs:

pip install winrmlib==0.0.6

winrmlib 0.0.32015-02-02T17:35:14Windows:

py -m pip install winrmlib==0.0.3

Unix/macOs:

pip install winrmlib==0.0.3

winrmlib 0.0.22015-02-02T17:31:59Windows:

py -m pip install winrmlib==0.0.2

Unix/macOs:

pip install winrmlib==0.0.2


Step 4: Otherwise, you can install winrmlib from local archives:

Download the distribution file from winrmlib-1.3.tar.gz or the specific winrmlib version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_winrmlib_downloaded_file>

On Unix/macOs:

pip install <path_to_winrmlib_downloaded_file>


List distribution:


Project link:

- Homepage