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

How to install DoubleRatchet via python pip




DoubleRatchet - A python implementation of the Double Ratchet algorithm., it belongs to Classifiers:

- Programming Language :: Python :: 3.4
- Topic :: Communications
- Topic :: Communications :: Chat
- Topic :: Security
- Topic :: Security :: Cryptography

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



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_DoubleRatchet_env

- Active the virtual environment

test_DoubleRatchet_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_DoubleRatchet_env

- Active the virtual environment

source test_DoubleRatchet_env/bin/active


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

To install DoubleRatchet on Windows(CMD):

py -m pip install DoubleRatchet

To install DoubleRatchet on Unix/macOs:

pip install DoubleRatchet


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

Example:

pip install DoubleRatchet==0.2.0


Please see the version list below table:

VersionReleased dateCommand
DoubleRatchet 0.7.02019-07-21T11:50:36Windows:

py -m pip install DoubleRatchet==0.7.0

Unix/macOs:

pip install DoubleRatchet==0.7.0

DoubleRatchet 0.6.02018-12-15T23:08:08Windows:

py -m pip install DoubleRatchet==0.6.0

Unix/macOs:

pip install DoubleRatchet==0.6.0

DoubleRatchet 0.5.02018-12-15T12:30:09Windows:

py -m pip install DoubleRatchet==0.5.0

Unix/macOs:

pip install DoubleRatchet==0.5.0

DoubleRatchet 0.4.12018-11-17T10:27:13Windows:

py -m pip install DoubleRatchet==0.4.1

Unix/macOs:

pip install DoubleRatchet==0.4.1

DoubleRatchet 0.4.02018-09-09T14:22:19Windows:

py -m pip install DoubleRatchet==0.4.0

Unix/macOs:

pip install DoubleRatchet==0.4.0

DoubleRatchet 0.3.22018-08-01T22:10:20Windows:

py -m pip install DoubleRatchet==0.3.2

Unix/macOs:

pip install DoubleRatchet==0.3.2

DoubleRatchet 0.3.12018-08-01T10:03:41Windows:

py -m pip install DoubleRatchet==0.3.1

Unix/macOs:

pip install DoubleRatchet==0.3.1

DoubleRatchet 0.3.02018-07-29T23:05:25Windows:

py -m pip install DoubleRatchet==0.3.0

Unix/macOs:

pip install DoubleRatchet==0.3.0

DoubleRatchet 0.2.02018-07-28T21:59:07Windows:

py -m pip install DoubleRatchet==0.2.0

Unix/macOs:

pip install DoubleRatchet==0.2.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_DoubleRatchet_downloaded_file>

On Unix/macOs:

pip install <path_to_DoubleRatchet_downloaded_file>


List distribution:

- DoubleRatchet-0.2.0.tar.gz (python version >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4)
- DoubleRatchet-0.3.0.tar.gz (python version >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4)
- DoubleRatchet-0.3.1.tar.gz (python version >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4)
- DoubleRatchet-0.3.2.tar.gz (python version >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4)
- DoubleRatchet-0.4.0.tar.gz (python version >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4)
- DoubleRatchet-0.4.1.tar.gz (python version >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4)
- DoubleRatchet-0.5.0.tar.gz (python version >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4)
- DoubleRatchet-0.6.0.tar.gz (python version >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4)
- DoubleRatchet-0.7.0.tar.gz (python version >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4)
- DoubleRatchet-1.0.0.tar.gz (python version >=3.7)
- DoubleRatchet-1.0.1.tar.gz (python version >=3.7)
- DoubleRatchet-1.0.2.tar.gz (python version >=3.7)
- DoubleRatchet-1.0.3-py3-none-any.whl (python version >=3.7)
- DoubleRatchet-1.0.3.tar.gz (python version >=3.7)


Project link:

- Homepage