Category: Python

  • Real-Time Video Streaming with Raspberry Pi

    Streaming live video with Raspberry Pi over the local network can come in handy in different cases. You can use your Raspberry Pi as a security camera, and IP video source for your computational heavy processes that run on a local server, or maybe on a remote-controlled robot. This post aims to make you able…

  • Managing Python Virtual Environments

    Python environments can get complex and problematic without virtual environments. We can use venv module that comes built-in with Python to manage it, but it may get complex too after a while. For these needs specifically, virtualenvwrapper has been developed. 1. Install virtualenvwrapper Install virtualenvwrapper with pip 2. Find The virtualenvwrapper.sh Virtualenvwrapper uses a sh…

  • OpenCV Python Installation for Raspberry Pi

    Installing OpenCV on Raspberry Pi has been a challenge a couple of years back from now, but it changed. Now we are able to install pre-compiled OpenCV Python binaries for Raspberry Pi with the pip package manager. This means we don’t actually need to compile it from the source code. If you are just getting…