News

As most of crownstones ble scripts will need to run in sudo mode due to access restrictions on the kernel bluetooth modules. By default, sudo python3 will run your native python3 installation, and not ...
Take advantage of virtual environments in Python to create and manage separate environments for your Python projects.
Python virtual environments shine for keeping projects and conflicting packages separate. Just keep these dos and don’ts in mind.
Sometimes, I want to package the Python source code and the virtual environment (venv) together for direct distribution. In this case, the interpreter should not be a symbolic link, but a full copy of ...
To create virtual environments, we use Python’s venv module. The venv module supports creating lightweight “virtual environments”, each with their own independent set of Python packages installed in ...