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

How to install libdecsync via python pip




libdecsync - Python3 bindings for libdecsync, it belongs to Classifiers:

- License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Operating System :: POSIX :: Linux

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



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_libdecsync_env

- Active the virtual environment

test_libdecsync_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_libdecsync_env

- Active the virtual environment

source test_libdecsync_env/bin/active


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

To install libdecsync on Windows(CMD):

py -m pip install libdecsync

To install libdecsync on Unix/macOs:

pip install libdecsync


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

Example:

pip install libdecsync==1.2.0


Please see the version list below table:

VersionReleased dateCommand
libdecsync 2.2.12021-12-24T15:54:01Windows:

py -m pip install libdecsync==2.2.1

Unix/macOs:

pip install libdecsync==2.2.1

libdecsync 2.1.0.post12021-10-11T18:16:12Windows:

py -m pip install libdecsync==2.1.0.post1

Unix/macOs:

pip install libdecsync==2.1.0.post1

libdecsync 2.1.02021-10-04T19:05:14Windows:

py -m pip install libdecsync==2.1.0

Unix/macOs:

pip install libdecsync==2.1.0

libdecsync 2.0.22021-10-03T20:22:17Windows:

py -m pip install libdecsync==2.0.2

Unix/macOs:

pip install libdecsync==2.0.2

libdecsync 2.0.02021-08-25T20:25:47Windows:

py -m pip install libdecsync==2.0.0

Unix/macOs:

pip install libdecsync==2.0.0

libdecsync 1.7.12020-09-24T20:29:54Windows:

py -m pip install libdecsync==1.7.1

Unix/macOs:

pip install libdecsync==1.7.1

libdecsync 1.7.02020-09-24T19:54:48Windows:

py -m pip install libdecsync==1.7.0

Unix/macOs:

pip install libdecsync==1.7.0

libdecsync 1.6.12020-09-09T17:07:29Windows:

py -m pip install libdecsync==1.6.1

Unix/macOs:

pip install libdecsync==1.6.1

libdecsync 1.6.02020-09-08T18:25:42Windows:

py -m pip install libdecsync==1.6.0

Unix/macOs:

pip install libdecsync==1.6.0

libdecsync 1.4.02020-07-19T12:51:28Windows:

py -m pip install libdecsync==1.4.0

Unix/macOs:

pip install libdecsync==1.4.0

libdecsync 1.3.12020-05-14T18:30:16Windows:

py -m pip install libdecsync==1.3.1

Unix/macOs:

pip install libdecsync==1.3.1

libdecsync 1.2.12020-02-18T18:43:47Windows:

py -m pip install libdecsync==1.2.1

Unix/macOs:

pip install libdecsync==1.2.1

libdecsync 1.2.02020-01-29T18:12:31Windows:

py -m pip install libdecsync==1.2.0

Unix/macOs:

pip install libdecsync==1.2.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_libdecsync_downloaded_file>

On Unix/macOs:

pip install <path_to_libdecsync_downloaded_file>


List distribution:

- libdecsync-1.2.0.tar.gz
- libdecsync-1.2.1.tar.gz
- libdecsync-1.3.1.tar.gz
- libdecsync-1.4.0.tar.gz
- libdecsync-1.6.0.tar.gz
- libdecsync-1.6.1.tar.gz
- libdecsync-1.7.0.tar.gz
- libdecsync-1.7.1.tar.gz
- libdecsync-2.0.0.tar.gz
- libdecsync-2.0.2.tar.gz
- libdecsync-2.1.0.tar.gz
- libdecsync-2.1.0.post1.tar.gz
- libdecsync-2.2.1.tar.gz


Project link:

- Homepage