Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-16 Thread Tom Keffer
That would be the "weewx way" of doing it! On Tue, Jul 16, 2024 at 11:57 AM Karen K wrote: > Tom Keffer schrieb am Dienstag, 16. Juli 2024 um 16:20:57 UTC+2: > > Question: do you expect the same script to be used for installations that > have done a package install, as well as a pip install? > >

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-16 Thread Karen K
Tom Keffer schrieb am Dienstag, 16. Juli 2024 um 16:20:57 UTC+2: Question: do you expect the same script to be used for installations that have done a package install, as well as a pip install? Yes. Primarily those scripts are invoked by crontab and create some files that are later used in

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-16 Thread vince
If you want to keep copying things into /usr/local/bin and chmod'ing them there, lines 128 and 142 of https://github.com/roe-dl/weewx-DWD/blob/master/install.py need to be changed to always use sudo This assumes the user can use sudo, but a weewx pip user is already assumed to be able to do th

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-16 Thread Tom Keffer
The whole pip process carefully guards against putting things in PATH. The only way to do it is to declare it in the pyproject.toml file, after which pip builds a shim to call the appropriate script. Obviously, that's not going to work for an extension. Question: do you expect the same script to b

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-16 Thread Karen K
michael.k...@gmx.at schrieb am Dienstag, 16. Juli 2024 um 09:39:11 UTC+2: bin/user? You need a directory for that purpose that is included in $PATH. Otherwise the shell does not find the script. And bin/user is not. -- You received this message because you are subscribed to the Google Groups

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-16 Thread Graham Eddy
venv/bin/ (where the python program uses that venv) ⊣GE⊢ > On 16 Jul 2024, at 5:39 PM, 'michael.k...@gmx.at' via weewx-user > wrote: > > bin/user? > > Karen K schrieb am Dienstag, 16. Juli 2024 um 07:58:19 UTC+2: >> The result is: If the virtual environment (venv) is used, weectl must not be

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-16 Thread 'michael.k...@gmx.at' via weewx-user
bin/user? Karen K schrieb am Dienstag, 16. Juli 2024 um 07:58:19 UTC+2: > The result is: If the virtual environment (venv) is used, weectl must not > be invoked by sudo. Without sudo, the correct paths are found. Thank you, > Tom, for pointing to this. > > Additional question: Where can I place

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-15 Thread Karen K
The result is: If the virtual environment (venv) is used, weectl must not be invoked by sudo. Without sudo, the correct paths are found. Thank you, Tom, for pointing to this. Additional question: Where can I place a script that can be invoked by the user from the command line in such an environ

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-14 Thread Karen K
Thank you. I will ask. Tom Keffer schrieb am Sonntag, 14. Juli 2024 um 22:08:51 UTC+2: > Let's back up a bit. On closer inspection of your user's log, I see > entries such as /usr/share/weewx. That implies a package install, so > weewx-venv is not involved. Yet, weewx.conf was not found in > /

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-14 Thread Tom Keffer
Let's back up a bit. On closer inspection of your user's log, I see entries such as /usr/share/weewx. That implies a package install, so weewx-venv is not involved. Yet, weewx.conf was not found in /etc/weewx/weewx.conf, its normal location with a package install. You'll have to get clarification

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-14 Thread vince
It is in the FAQ at https://github.com/weewx/weewx/wiki/WeeWX-Frequently-Asked-Questions#why-do-i-get-command-not-found-when-i-type-weewx-commands but perhaps buried a bit. If you put everything into bin/user and remove your shebang lines all the python scripts should probably work ok.If

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-14 Thread Karen K
Tom Keffer schrieb am Sonntag, 14. Juli 2024 um 21:24:24 UTC+2: On Sun, Jul 14, 2024 at 12:13 PM Karen K wrote: I read a little bit through the pip installation guide . There all calls of weectl are preceded by "source ~/weewx-venv/bin/activate". Co

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-14 Thread Tom Keffer
On Sun, Jul 14, 2024 at 12:13 PM Karen K wrote: > I read a little bit through the pip installation guide > . There all calls of weectl > are preceded by "source ~/weewx-venv/bin/activate". Could it be, that for > installing extensions this is necessary

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-14 Thread Karen K
Thank you all. I read a little bit through the pip installation guide . There all calls of weectl are preceded by "source ~/weewx-venv/bin/activate". Could it be, that for installing extensions this is necessary, too? @Tom: When I wrote the first p

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-14 Thread Tom Keffer
If not specified, the utility weectl (and, for that matter, weewxd) looks in the "usual places," which are ~/weewx-data, /etc/weewx, and /home/weewx. If a config file is located someplace other than those three places, it must be specified explicitly using the --config option. Because sudo is bein

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-14 Thread Karen K
vince schrieb am Sonntag, 14. Juli 2024 um 20:19:45 UTC+2: Agree. Your install.py should 'not' be run under sudo, you also need to modify it to be able to copy and symlink into /usr/local/bin (which requires sudo). I am afraid, the installation crashes before all those copying and linking. It

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-14 Thread vince
Agree. Your install.py should 'not' be run under sudo, you also need to modify it to be able to copy and symlink into /usr/local/bin (which requires sudo). Why aren't the /usr/local/bin items simply installed and running out of the bin/user directory On Sunday, July 14, 2024 at 10:51:48 A

Re: [weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-14 Thread Dominic Reich
I doubt `sudo` should be used here. Karen K wrote: One user tried to install [1]weewx-DWD into an WeeWX installation made by pip. The error messages refer to files of core WeeWX: (weewx-venv) user@pc:~$ sudo weectl extension install weewx-dwd.zip [sudo] Passwort für user: Error par

[weewx-user] Installation of extension fails for pip installed WeeWX but works for apt installed WeeWX

2024-07-14 Thread Karen K
One user tried to install weewx-DWD into an WeeWX installation made by pip. The error messages refer to files of core WeeWX: (weewx-venv) user@pc:~$ sudo weectl extension install weewx-dwd.zip [sudo] Passwort für user: Error parsing config file: Unable to fi

Re: [weewx-user] installation and configuration of weewx-saratoga

2022-07-24 Thread Alessandro Battini
Thanks for you answer, I've added teh column manully but then I'm getting other errors on templates, so probably is not the right way to add it, or at least is not enough, since I don't want to investigate further I will stick with the standard weewx template. Il giorno sabato 23 luglio 2022 all

Re: [weewx-user] installation and configuration of weewx-saratoga

2022-07-23 Thread Tom Keffer
I don't know anything about the Saratoga extensions, but I do know how to add a column to the database: use wee_database with the --add-column option: *wee_database --add-column=windrun* That may, or may not, help your problem. It's p

[weewx-user] installation and configuration of weewx-saratoga

2022-07-23 Thread Alessandro Battini
Hi all, I'm trying to install and configure the weewx-saratoga plugin, but after the installation process, once I restart the weewx service I'm getting this error in the log : Database OperationalError exception: no such column: windrun After some search it should be an issue with my DB that is

[weewx-user] Installation libpcap for Interceptor and Froggit WH6000 on rpi2

2021-01-09 Thread sc.lep...@gmail.com
Hello I want to use Interceptor Wifi for my Froggit Station . I try to install librairy libpcap on my rpi2 I use all these but nok ;-( 1. sudo pip install pypcap 2. sudo apt-get install python-libpcap 3. sudo apt-get install libcap-dev So i try to find another way : wget ht

[weewx-user] Installation of version 4.2.0

2020-12-15 Thread Ton vanN
Tried a fresh installation of weewx on Raspberry3B+/RaspianBuster. Stuck, being unable to install some prerequisites. Prior to install of main program of weewx already difficulties, but very clear message when running the install-instruction from Raspberry's CLI: apt-get install weewx Then report

Re: [weewx-user] Installation at remote site using RPi and VNC?

2020-12-09 Thread John Kline
> My version of ideal is ssh access only to the command line and no GUI involved. +1 And get a firewall and VPN in. > On Dec 9, 2020, at 11:04 AM, Greg Troxel wrote: > >  > Sunray writes: > >> Sorry if this has been brought up already. I plan to install a Raspberry Pi >> running Weewx at a r

Re: [weewx-user] Installation at remote site using RPi and VNC?

2020-12-09 Thread Greg Troxel
Sunray writes: > Sorry if this has been brought up already. I plan to install a Raspberry Pi > running Weewx at a remote cold cabin, where the time and conditions for > local configuration and troubleshooting are limited. So ideally I'd like to > bring a pre-configured RPi to the cabin and ju

Re: [weewx-user] Installation at remote site using RPi and VNC?

2020-12-09 Thread vince
I asked around and a coworker suggested just opening ssh up on the firewalls on both end (carefully) and running VNC over ssh. If you did that you could set your home firewalls to permit just the 'one' ip on the other side in. That would be pretty good. Alternately I think today's VPN softwa

Re: [weewx-user] Installation at remote site using RPi and VNC?

2020-12-09 Thread weather list
Two other considerations: Power supply: give some thought to a solar system to power the Pi. If it is as remote as it sounds, it sounds as if outages might easily occur? A solar system might even power the Davis unit; I don’t know the Envoy but if it uses alkaline batteries I am not sure of the

[weewx-user] Installation at remote site using RPi and VNC?

2020-12-09 Thread Sunray
Hello, Sorry if this has been brought up already. I plan to install a Raspberry Pi running Weewx at a remote cold cabin, where the time and conditions for local configuration and troubleshooting are limited. So ideally I'd like to bring a pre-configured RPi to the cabin and just plug it into th

[weewx-user] Installation/configuration issues (WeeWx on a Raspberry Pi4)

2020-06-16 Thread Stuart Beaumont
Evening all I'm having a few challenges with an installation and configuration of weewx on a Raspberry Pi. Here is an overview of what im trying to do and what ive done: Ive got a WH6006 Weather Station. It is a cellular system in that it connects to the internet with mobile data. I'm wanting

[weewx-user] Installation problem - python3-cheetah dependency

2020-05-09 Thread Kenneth Sherwood
I'm trying to install Weewx under Mint 19.2 I've attempted to follow both the Deb package install instructions and the setup.py process. In both cases, I get hung up with an unmet dependency: sudo apt-get install weewx Reading package lists... Done Building dependency tree Reading state

Re: [weewx-user] Installation issues on Synology DS918+ -- No module named configobj

2020-03-18 Thread Ivan Schrooyen
Hello, Thanks for your fast answer. I have actually run all installation as root user. In order to do that on Synology, I had to issue the command "sudo -i" before hand. In any case, I have tried both options mentioned in your last post a couple of seconds ago, and I am still stuck with the sa

Re: [weewx-user] Installation issues on Synology DS918+ -- No module named configobj

2020-03-18 Thread Thomas Keffer
Because you installed configobj using pip, but *without root privileges*, pip did what's called a "user" install. Because "sudo" was not specified, it could not install configobj in the system directories, so, instead, it installed in a subdirectory (usually ".local") of your home directory. Then,

[weewx-user] Installation issues on Synology DS918+ -- No module named configobj

2020-03-18 Thread Ivan Schrooyen
Hello, I would like to become a new user of Weewx and install it on my Synology NAS (DS918+). The NAS is running the latest OS from Synology: DSM 6.2.2-24922. The installation procedure to be followed is according to me the one with python. The NAS has 2 versions of python installed: 2.7.12 (

[weewx-user] installation of Weewx

2020-03-10 Thread Parsoli 69
Just amazed. I've built many websites from template from many folks. Whether that's Meteotemplate, Weather26, or many others. Setup linux ubuntu or redhat myself following instructions by these developers and always had a functional website, IF, I followed the instructions. I've built 4 virt

Re: [weewx-user] Installation paths -debian package

2019-05-05 Thread Thomas Keffer
Irregardless of how weewx is installed, the following locations are searched when looking for weewx.conf: 1. If an argument is given to weewxd, it uses that; 2. Then it tries two levels up from the directory weewxd is in (this is useful when running out of the git repository); 3. Then

[weewx-user] Installation paths -debian package

2019-05-05 Thread JM
I have previously set up two other weather stations using weewx. Just set up a new instance and I am finding that the default installation path for weewx.conf is incorrect. below is a error received in it's initial installation state. I have moved weewx.conf to the /home/pi/ directory and it ru

Re: [weewx-user] installation failure on Ubuntu 18.10

2019-04-30 Thread Allen Gordon
Thomas, Thanks for your help. I found the problem. The key was the in syslog: "Apr 29 14:15:17 pgserver weewx[3502]: IndexError: Invalid interface index 0".I did set debug = 1 and viewed the new syslog which basically had the same information as I posted previously. I switched US

Re: [weewx-user] installation failure on Ubuntu 18.10

2019-04-29 Thread Thomas Keffer
Hard to say much with such a little snippet of the log. Take a look at *Help! Posting to weewx-user * on how to get a good log. -tk On Mon, Apr 29, 2019 at 2:15 PM Allen Gordon wrote: > Installation of weewx on ubuntu 18.10 failed

[weewx-user] installation failure on Ubuntu 18.10

2019-04-29 Thread Allen Gordon
Installation of weewx on ubuntu 18.10 failed. I installed with with apt-get using the posted directions for ubuntu, sudo /etc/init.d/weewx -l status Usage: /etc/init.d/weewx {start|stop|status|restart|reload} judoal@pgserver:/etc/weewx$ sudo /etc/init.d/weewx status -l ● weewx.service - LSB: we

Re: [weewx-user] Installation issue on macOS Mojave with FineOffsetUSB

2018-12-23 Thread Sean Timm
I gave up and purchased WeatherCat. On Sun, Dec 23, 2018 at 1:57 PM vince wrote: > On Tuesday, December 18, 2018 at 7:03:05 PM UTC-8, Sean Timm wrote: >> >> >> default 21:57:10.315482 -0500 kernel 080745.640834 Python@(null): >> IOUSBUserClientLegacy::start: missing entitlement com.apple.ibridge

Re: [weewx-user] Installation issue on macOS Mojave with FineOffsetUSB

2018-12-23 Thread vince
On Tuesday, December 18, 2018 at 7:03:05 PM UTC-8, Sean Timm wrote: > > > default 21:57:10.315482 -0500 kernel 080745.640834 Python@(null): > IOUSBUserClientLegacy::start: missing entitlement com.apple.ibridge.control > >> >>> when in doubt Google the error message you get See if https://for

Re: [weewx-user] Installation issue on macOS Mojave with FineOffsetUSB

2018-12-22 Thread Greg from Oz
Put the user that is running the weewx into the dialout group? On Wednesday, 19 December 2018 14:03:05 UTC+11, Sean Timm wrote: > > Matthew Wall, > > I installed your "usb" branch of WeeWX. I'm still getting insufficient > permissions. Are there code or configuration changes that I need to make t

Re: [weewx-user] Installation issue on macOS Mojave with FineOffsetUSB

2018-12-18 Thread Sean Timm
Matthew Wall, I installed your "usb" branch of WeeWX. I'm still getting insufficient permissions. Are there code or configuration changes that I need to make to get it to work? Thanks, Sean default 21:57:10.315482 -0500 kernel 080745.640834 Python@(null): IOUSBUserClientLegacy::start: missing en

Re: [weewx-user] Installation issue on macOS Mojave with FineOffsetUSB

2018-12-17 Thread Sean Timm
Ah, I found another thread that is useful... https://groups.google.com/forum/#!topic/weewx-user/tFGnDKSXgfo Too late to play with it tonight, but I'll try the usb branch tomorrow. Anything that I need to be aware of? Thanks, Sean On Tue, Dec 18, 2018 at 12:25 AM Sean Timm wrote: > I have a WS-

[weewx-user] Installation issue on macOS Mojave with FineOffsetUSB

2018-12-17 Thread Sean Timm
I have a WS-2080 connected via USB (FineOffsetUSB) to a Mac Mini running Mojave 10.14.2. I am receiving a driver error: default 23:55:14.233775 -0500 Python import of driver failed: No backend available () default 23:55:14.233817 -0500 Python engine: Unable to load driver: No backend available

Re: [weewx-user] Installation Weewx on raspberry without meteo station

2018-11-27 Thread Thomas Keffer
WeeWX comes with a simulator. During installation, specify that you want it. To avoid polluting "real data," be sure to delete the database before installing a real weather station. -tk On Tue, Nov 27, 2018 at 12:14 AM Wifi75 wrote: > Hello to all, > how it is possibile run weewx interface on

[weewx-user] Installation Weewx on raspberry without meteo station

2018-11-27 Thread Wifi75
Hello to all, how it is possibile run weewx interface on my raspberry without meteostation? I want only test the wee interface for now... -- You received this message because you are subscribed to the Google Groups "weewx-user" group. To unsubscribe from this group and stop receiving emails fr

[weewx-user] Installation WeeWX failed?

2018-11-18 Thread michael . stuhldreier
Hello, i want to install a Fine Offset WH1080 on Raspian. After installing weewx, i checked the status with sudo tail -f /var/log/syslog, but now i think, it is not working: pi@raspberrypi:~ $ sudo tail -f /var/log/syslog Nov 18 10:53:04 raspberrypi weewx[1949]: engine.db_binder)

Re: [weewx-user] Installation Problem on Mint 19 (32 bit) - python-imaging not available

2018-08-06 Thread James Greiner
Couldn't wait so downloaded 3.81... Success, and have my station back on line!,,, Need to update my longitude though... should be West and comes up as East http://jimgreiner.is-a-geek.net/weewx/ Thanks again for both of your help! Jim On Monday, August 6, 2018 at 8:33:19 PM UTC-4, James Gre

Re: [weewx-user] Installation Problem on Mint 19 (32 bit) - python-imaging not available

2018-08-06 Thread James Greiner
Thanks Vince... Out of time tonight, but will give that a try tomorrow and post results. Jim On Monday, August 6, 2018 at 8:25:37 PM UTC-4, vince wrote: > > On Monday, August 6, 2018 at 5:09:22 PM UTC-7, James Greiner wrote: >> >> Installed all python-pil packages... did a re-boot... still get

Re: [weewx-user] Installation Problem on Mint 19 (32 bit) - python-imaging not available

2018-08-06 Thread vince
On Monday, August 6, 2018 at 5:09:22 PM UTC-7, James Greiner wrote: > > Installed all python-pil packages... did a re-boot... still getting the > "weewx : Depends: python-imaging (>= 1.1.6) but it is not installable" > error same spot and installation stops. :( > >> >>> This will be in 3.8.1 when

Re: [weewx-user] Installation Problem on Mint 19 (32 bit) - python-imaging not available

2018-08-06 Thread James Greiner
Installed all python-pil packages... did a re-boot... still getting the "weewx : Depends: python-imaging (>= 1.1.6) but it is not installable" error same spot and installation stops. :( Jim On Monday, August 6, 2018 at 7:49:06 PM UTC-4, James Greiner wrote: > > Thanks Glenn... I'll try that

Re: [weewx-user] Installation Problem on Mint 19 (32 bit) - python-imaging not available

2018-08-06 Thread James Greiner
Thanks Glenn... I'll try that in a bit and see if it allows the install to continue. Jim On Monday, August 6, 2018 at 7:44:43 PM UTC-4, Glenn McKechnie wrote: > > Hi James, > > Try installing python-pil and see if that resolves the problem. > (It should, as apt is suggesting it, and weewx is c

Re: [weewx-user] Installation Problem on Mint 19 (32 bit) - python-imaging not available

2018-08-06 Thread Glenn McKechnie
Hi James, Try installing python-pil and see if that resolves the problem. (It should, as apt is suggesting it, and weewx is configured to use it) [...] > However the following packages replace it: > python-pil* sudo apt-get install python-pil -- Cheers Glenn rorpi - read only raspberry

[weewx-user] Installation Problem on Mint 19 (32 bit) - python-imaging not available

2018-08-06 Thread James Greiner
*Hello,* *New user (and linux newbie)... Attempted to install weewx this evening per the Debian/Ubuntu/Mint instructions, and am getting a dependency error during install:* *Running on Linux Mint 19 32 bit...* *jim@weather:~$ sudo apt-get install weewxReading package lists... Don

[weewx-user] Installation difficulties

2018-03-22 Thread Keith Stathem
I installed Weewx on a TPLink WDR4300 (with external storage), following the weewx on openwrt instructions; now I am working on the interceptor driver to get data from my acurite bridge. It

[weewx-user] installation

2018-02-27 Thread Young Joel Were
can we use the weewx in windows environment? -- 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 weewx-user+unsubscr...@googlegroups.com. For more options, visit https

Re: [weewx-user] Installation problems at Configure apt

2017-11-08 Thread 'Stefan Gö' via weewx-user
Thanks now it´s working! :-) Am Mittwoch, 8. November 2017 16:14:41 UTC+1 schrieb Tom Keffer: > > The option is "O", not "0". So, you want > > wget -qO - http://weewx.com/keys.html | sudo apt-key add - > > > not > > wget -q0 - http://weewx.com/keys.html | sudo apt-key add - > > > -tk > > On Wed, N

Re: [weewx-user] Installation problems at Configure apt

2017-11-08 Thread Thomas Keffer
The option is "O", not "0". So, you want wget -qO - http://weewx.com/keys.html | sudo apt-key add - not wget -q0 - http://weewx.com/keys.html | sudo apt-key add - -tk On Wed, Nov 8, 2017 at 7:07 AM, 'Stefan Gö' via weewx-user < weewx-user@googlegroups.com> wrote: > Hi together, > I would li

[weewx-user] Installation problems at Configure apt

2017-11-08 Thread 'Stefan Gö' via weewx-user
Hi together, I would like to install the weewx software to my Raspian system. According to the user manual I first need to Configure apt like this: If I put these lines inside my Raspian concole I get following errors: pi@ei-dev-005:~ $ wget -q0 - http://weewx.c

[weewx-user] Installation Weewx 3.7.1 on Macos 10.12.6

2017-08-10 Thread 'Peter Röd' via weewx-user
I tried to install Weex following the procedure as described here file:///Users/Peter/Downloads/weewx-3.7.1/docs/macos.htm Before doing this, I installed Phyton 2.7. So far everything worked. Some warnings, no errors. Set up is asking me for the usual stuff When I try to start Weewx, with the

[weewx-user] Installation report: Banana Pi M1 + Armbian + weewx 3.7.1

2017-06-25 Thread cameron . b . paine
Hello fellow WX enthusiasts. I've been lurking since August last year. Thanks for your collective knowledge. Thank you also to Tom and the myriad of other contributors for creating and refining the software. I've been running weeWX on a Banana Pi M1 since January. Initially I rolled my own File

Re: [weewx-user] Installation on Raspberry Pi 3 - issue with no setup screen at startup, so no file created in home folder?

2017-01-12 Thread Gary Barnett
Thanks, Glenn that seems to have worked. I have to see if I get data output to the html file. If I get a "file not find" error where do I go from here? Thanks On Thursday, January 12, 2017 at 3:05:38 PM UTC-8, Glenn McKechnie wrote: > > from a terminal, type... > > sudo dpkg-reconfigure weewx >

Re: [weewx-user] Installation on Raspberry Pi 3 - issue with no setup screen at startup, so no file created in home folder?

2017-01-12 Thread Glenn McKechnie
from a terminal, type... sudo dpkg-reconfigure weewx and you should be given a simple configuration screen which will populate /etc/weewx/weewx.conf Anything else that needs adding after that then you may edit /etc/weewx/weewx.conf directly with the text editor of your choice - nano, vi etc If

[weewx-user] Installation on Raspberry Pi 3 - issue with no setup screen at startup, so no file created in home folder?

2017-01-12 Thread Gary Barnett
Upon installing weewx on my Raspberry Pi 3 - I never see the first-time setup screen where you put all your local information, so no config file is created in home folder? I tried reinstalling but still no setup screen, is there a manual way of starting the setup in the terminal? Am I missing