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

How to install xs1-api-client via python pip




xs1-api-client - A library to get and set values of the EZcontrol XS1 Gateway, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: 3.8

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



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_xs1-api-client_env

- Active the virtual environment

test_xs1-api-client_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_xs1-api-client_env

- Active the virtual environment

source test_xs1-api-client_env/bin/active


Step 2: OK, now, let flow below content to start the installation xs1-api-client

To install xs1-api-client on Windows(CMD):

py -m pip install xs1-api-client

To install xs1-api-client on Unix/macOs:

pip install xs1-api-client


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

Example:

pip install xs1-api-client==1.0.0


Please see the version list below table:

VersionReleased dateCommand
xs1-api-client 3.0.12020-09-07T13:44:52Windows:

py -m pip install xs1-api-client==3.0.1

Unix/macOs:

pip install xs1-api-client==3.0.1

xs1-api-client 3.0.02020-06-06T05:35:18Windows:

py -m pip install xs1-api-client==3.0.0

Unix/macOs:

pip install xs1-api-client==3.0.0

xs1-api-client 2.3.52018-12-08T03:58:38Windows:

py -m pip install xs1-api-client==2.3.5

Unix/macOs:

pip install xs1-api-client==2.3.5

xs1-api-client 2.3.42018-09-19T00:27:03Windows:

py -m pip install xs1-api-client==2.3.4

Unix/macOs:

pip install xs1-api-client==2.3.4

xs1-api-client 2.3.32018-07-13T17:47:54Windows:

py -m pip install xs1-api-client==2.3.3

Unix/macOs:

pip install xs1-api-client==2.3.3

xs1-api-client 2.3.22018-07-13T17:41:25Windows:

py -m pip install xs1-api-client==2.3.2

Unix/macOs:

pip install xs1-api-client==2.3.2

xs1-api-client 2.3.12018-07-13T17:38:18Windows:

py -m pip install xs1-api-client==2.3.1

Unix/macOs:

pip install xs1-api-client==2.3.1

xs1-api-client 2.3.02018-04-02T17:50:30Windows:

py -m pip install xs1-api-client==2.3.0

Unix/macOs:

pip install xs1-api-client==2.3.0

xs1-api-client 2.2.02017-11-27T20:44:43Windows:

py -m pip install xs1-api-client==2.2.0

Unix/macOs:

pip install xs1-api-client==2.2.0

xs1-api-client 2.1.32017-11-24T00:17:27Windows:

py -m pip install xs1-api-client==2.1.3

Unix/macOs:

pip install xs1-api-client==2.1.3

xs1-api-client 2.0.02017-09-29T12:46:01Windows:

py -m pip install xs1-api-client==2.0.0

Unix/macOs:

pip install xs1-api-client==2.0.0

xs1-api-client 1.0.12017-02-25T01:03:25Windows:

py -m pip install xs1-api-client==1.0.1

Unix/macOs:

pip install xs1-api-client==1.0.1

xs1-api-client 1.0.02017-02-24T22:28:30Windows:

py -m pip install xs1-api-client==1.0.0

Unix/macOs:

pip install xs1-api-client==1.0.0


Step 4: Otherwise, you can install xs1-api-client from local archives:

Download the distribution file from xs1_api_client-3.0.1.tar.gz or the specific xs1-api-client version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_xs1-api-client_downloaded_file>

On Unix/macOs:

pip install <path_to_xs1-api-client_downloaded_file>


List distribution:


Project link:

- Homepage