-
Notifications
You must be signed in to change notification settings - Fork 771
Autobahn on Ubuntu
Tobias Oberstein edited this page Feb 16, 2014
·
2 revisions
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'
>>>