On Friday, September 24, 2021 at 2:24:09 PM UTC-4 Evan Kimberly wrote: > So to my understanding that command should become > 'PYTHONPATH=/home/weewx/bin /usr/local/bin/python3 -m user.gw1000 > --test-driver' > > but when i enter that command i receive 'PYTHONPATH=/home/weewx/bin: > Command not found.' >
what shell are you using? default on bsd systems is often ksh. so you would have to do this: PYTHONPATH=/home/weewx/bin; /usr/local/bin/python3 -m user.gw1000 --test-driver (notice the semicolon) -- 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]. To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/c79a9060-0028-4984-af19-6b97d46b6eecn%40googlegroups.com.
