We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Install dependencies:
sudo apt-get install python-virtualenv sudo apt-get install python-dev
Create a new Python environment:
virtualenv ~/python1
Update setuptools:
~/python1/bin/pip --upgrade setuptools
Install Autobahn|Python with Twisted and asyncio support:
~/python1/bin/pip install autobahn[twisted,asyncio]
Check install:
oberstet@corei7ub1310:~$ ~/python1/bin/python Python 2.7.5+ (default, Sep 19 2013, 13:48:49) [GCC 4.8.1] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import autobahn >>> autobahn.version '0.8.1' >>>