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

How to install sacn via python pip




sacn - sACN / E1.31 module for easy handling of DMX data over ethernet, it belongs to Classifiers:

- Programming Language :: Python :: 3 :: Only

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



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_sacn_env

- Active the virtual environment

test_sacn_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_sacn_env

- Active the virtual environment

source test_sacn_env/bin/active


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

To install sacn on Windows(CMD):

py -m pip install sacn

To install sacn on Unix/macOs:

pip install sacn


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

Example:

pip install sacn==1.2


Please see the version list below table:

VersionReleased dateCommand
sacn 1.8.12021-08-18T13:49:19Windows:

py -m pip install sacn==1.8.1

Unix/macOs:

pip install sacn==1.8.1

sacn 1.8.02021-07-12T17:14:40Windows:

py -m pip install sacn==1.8.0

Unix/macOs:

pip install sacn==1.8.0

sacn 1.7.12021-07-06T15:46:48Windows:

py -m pip install sacn==1.7.1

Unix/macOs:

pip install sacn==1.7.1

sacn 1.7.02021-07-05T14:58:49Windows:

py -m pip install sacn==1.7.0

Unix/macOs:

pip install sacn==1.7.0

sacn 1.6.42021-04-09T16:08:21Windows:

py -m pip install sacn==1.6.4

Unix/macOs:

pip install sacn==1.6.4

sacn 1.6.32021-03-24T19:22:38Windows:

py -m pip install sacn==1.6.3

Unix/macOs:

pip install sacn==1.6.3

sacn 1.6.22021-03-14T09:06:41Windows:

py -m pip install sacn==1.6.2

Unix/macOs:

pip install sacn==1.6.2

sacn 1.6.12021-03-12T17:37:48Windows:

py -m pip install sacn==1.6.1

Unix/macOs:

pip install sacn==1.6.1

sacn 1.6.02021-03-09T17:28:30Windows:

py -m pip install sacn==1.6.0

Unix/macOs:

pip install sacn==1.6.0

sacn 1.5.02021-02-07T09:48:37Windows:

py -m pip install sacn==1.5.0

Unix/macOs:

pip install sacn==1.5.0

sacn 1.4.62020-09-16T09:58:01Windows:

py -m pip install sacn==1.4.6

Unix/macOs:

pip install sacn==1.4.6

sacn 1.4.52020-09-16T09:31:13Windows:

py -m pip install sacn==1.4.5

Unix/macOs:

pip install sacn==1.4.5

sacn 1.4.42020-09-15T10:40:46Windows:

py -m pip install sacn==1.4.4

Unix/macOs:

pip install sacn==1.4.4

sacn 1.4.32020-05-10T14:00:06Windows:

py -m pip install sacn==1.4.3

Unix/macOs:

pip install sacn==1.4.3

sacn 1.4.22020-04-26T11:00:11Windows:

py -m pip install sacn==1.4.2

Unix/macOs:

pip install sacn==1.4.2

sacn 1.4.12019-12-07T10:21:51Windows:

py -m pip install sacn==1.4.1

Unix/macOs:

pip install sacn==1.4.1

sacn 1.42019-12-07T10:04:38Windows:

py -m pip install sacn==1.4

Unix/macOs:

pip install sacn==1.4

sacn 1.32018-02-06T18:28:27Windows:

py -m pip install sacn==1.3

Unix/macOs:

pip install sacn==1.3

sacn 1.22017-12-17T13:22:16Windows:

py -m pip install sacn==1.2

Unix/macOs:

pip install sacn==1.2


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_sacn_downloaded_file>

On Unix/macOs:

pip install <path_to_sacn_downloaded_file>


List distribution:


Project link:

- Homepage