I'm trying to get pyshark version 0.4.2.9 on my raspberry pi 3B and cannot capture any packets using LiveCapture. Strangely enough the following commands run perfectly fine on my desktop (both devices have the same USB wifi adapter) but will always time out on the Pi.
Python 3.7.3 (default, Dec 20 2019, 18:57:59)
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pyshark
>>> cap = pyshark.LiveCapture(interface='wlan1')
>>> cap.sniff(packet_count=1, timeout=50)
>>> print(cap)
<LiveCapture (0 packets)>
Interestingly enough, tshark works just fine. I'd much rather have pyshark working, since it would work much easier with the rest of my project. Has anyone else experienced a similar issue with pyshark on Raspberry Pi?