> Can you please give some hints on how to run on Linux for non-python > users?
Yeah, sorry about that :) > [EMAIL PROTECTED] chirp-0.1.2]# ./chirp.py > Traceback (most recent call last): > File "./chirp.py", line 19, in <module> > import serial > ImportError: No module named serial You need the python serial module. If you're on a Fedora/RedHat machine, you should be able to do: # yum install pyserial if you're on a Debian/Ubuntu machine, do: # apt-get install pyserial -- Dan Smith dsmith#danplanet.com, s/#/@/ www.danplanet.com KK7DS
