blob: c99079900731052455c1971bd0cd470e13da6bf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
############
Installation
############
First, install the following dependencies:
- six
- backports.ssl_match_hostname (only for Python 2.x)
To install the Python 2 dependencies, use:
``pip install six backports.ssl_match_hostname``
To install the Python 3 dependencies, use:
``pip install six``
You can use either ``python setup.py install`` or
``pip install websocket-client`` to install this library.
|