Follow me
-
Recent Posts
calendar
Recent Comments
- Stan on python argparse issues with the help argument (TypeError: %o format: a number is required, not dict)
- Cormac on Pandas : how to compare dataframe with None
- LP on AWK: the substr command to select a substring
- jrab on python argparse issues with the help argument (TypeError: %o format: a number is required, not dict)
- How to disable SSL verification for urlretrieve? – Peter's blog on python: certificate verified failed
Archives
Categories
Meta
Daily Archives: May 25, 2011
Skype video missing under linux
In principle in the options->advanced section you should have a section called video devices If not, then quit Skype, and create this environmental variable export LD_PRELOAD=/usr/lib/libv4l/v4l1compat.soexport LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so Restart Skype and go to options->advanced->video devices that should be available now. Tested … Continue reading
What is Virtualenv
Virtualenv is a tool to create isolated Python environments. Its usage could be very useful when dependencies and versions are tricky. Imagine you have an application that needs version 1 of a library, but another application requires version 2. If … Continue reading