You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First read thoroughly the Arch Wiki entry on bluetooth
Verify that your Broadcom bluetooth device is recognized with lsusb. You should see something like:
...
Bus 002 Device 005: ID xxxx:xxxx Lite-On Technology Corp. Broadcom BCM43142A0 Bluetooth Device
...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Last active
May 29, 2020 19:07— forked from mcous/Makefile
Simple AVR Makefile template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Setting up a simple Python virtual environment using venv
Python virtual environments using venv
Virtual environments are a useful way of separating dependencies and establishing a working environment for Python projects. The most common way of achieving this is through the use of virtualenv or pipenv. But since Python 3.3, a subset of virtualenv has been integrated into the standard library under the venvmodule. Though not as featureful as the former two, venv is a simple way of getting a functional virtual environment setup.
This gist was inspired by Corey Schafer's video on venv.
The commands are intended to be used on any Arch-based Linux distribution. For others distros, python3 and pip3 might be the way to go.