On Wednesday, March 7, 2018 at 9:20:31 PM UTC-5, RobbH wrote: > > > Meanwhile, I've encountered another issue, that I think is independent of > the hardware issues. Installation of the Interceptor appeared to be > successful, but I am unable to run the driver directly, following the > directions in the readme file. This command: > > PYTHONPATH=bin python bin/user/interceptor.py --help > > produces this error: > > python: can't open file 'bin/user/interceptor.py': [Errno 2] No such file > or > directory > >> >> when using relative paths, the directory in which you invoke the command matters:
cd /home/weewx PYTHONPATH=bin python bin/user/interceptor.py --help or you can use absolute paths to do it from anywhere: PYTHONPATH=/home/weewx/bin python /home/weewx/bin/user/interceptor.py --help m -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
