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

How to install blue-st-sdk via python pip




blue-st-sdk - Bluetooth Low Energy abstraction library package., it belongs to Classifiers:

- License :: OSI Approved :: BSD License
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Programming Language :: Python :: 3.5
- Topic :: Software Development :: Embedded Systems

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



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_blue-st-sdk_env

- Active the virtual environment

test_blue-st-sdk_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_blue-st-sdk_env

- Active the virtual environment

source test_blue-st-sdk_env/bin/active


Step 2: OK, now, let flow below content to start the installation blue-st-sdk

To install blue-st-sdk on Windows(CMD):

py -m pip install blue-st-sdk

To install blue-st-sdk on Unix/macOs:

pip install blue-st-sdk


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

Example:

pip install blue-st-sdk==0.0.1


Please see the version list below table:

VersionReleased dateCommand
blue-st-sdk 1.4.02019-07-18T14:27:15Windows:

py -m pip install blue-st-sdk==1.4.0

Unix/macOs:

pip install blue-st-sdk==1.4.0

blue-st-sdk 1.3.02019-05-29T17:39:16Windows:

py -m pip install blue-st-sdk==1.3.0

Unix/macOs:

pip install blue-st-sdk==1.3.0

blue-st-sdk 1.2.12019-05-14T13:39:25Windows:

py -m pip install blue-st-sdk==1.2.1

Unix/macOs:

pip install blue-st-sdk==1.2.1

blue-st-sdk 1.1.12019-03-29T13:10:41Windows:

py -m pip install blue-st-sdk==1.1.1

Unix/macOs:

pip install blue-st-sdk==1.1.1

blue-st-sdk 1.1.02019-03-29T10:37:56Windows:

py -m pip install blue-st-sdk==1.1.0

Unix/macOs:

pip install blue-st-sdk==1.1.0

blue-st-sdk 1.0.02018-10-31T10:39:03Windows:

py -m pip install blue-st-sdk==1.0.0

Unix/macOs:

pip install blue-st-sdk==1.0.0

blue-st-sdk 0.0.12018-10-12T15:10:06Windows:

py -m pip install blue-st-sdk==0.0.1

Unix/macOs:

pip install blue-st-sdk==0.0.1


Step 4: Otherwise, you can install blue-st-sdk from local archives:

Download the distribution file from blue_st_sdk-1.4.0.tar.gz or the specific blue-st-sdk version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_blue-st-sdk_downloaded_file>

On Unix/macOs:

pip install <path_to_blue-st-sdk_downloaded_file>


List distribution:

- blue_st_sdk-0.0.1-py2-none-any.whl
- blue_st_sdk-0.0.1.tar.gz
- blue_st_sdk-1.0.0-py2-none-any.whl
- blue_st_sdk-1.0.0.tar.gz
- blue_st_sdk-1.1.0-py2-none-any.whl
- blue_st_sdk-1.1.0.tar.gz
- blue_st_sdk-1.1.1-py2-none-any.whl
- blue_st_sdk-1.1.1.tar.gz
- blue_st_sdk-1.2.1-py2-none-any.whl
- blue_st_sdk-1.2.1.tar.gz
- blue_st_sdk-1.3.0-py2-none-any.whl
- blue_st_sdk-1.3.0.tar.gz
- blue_st_sdk-1.4.0-py2-none-any.whl
- blue_st_sdk-1.4.0.tar.gz


Project link:

- Homepage