Re: [weewx-user] New Install issues on Amazon EC2 instance - no index.html file

2018-10-16 Thread Thomas Keffer
Glad it worked out. -tk On Tue, Oct 16, 2018 at 6:17 AM trrisner wrote: > Solution found. > > The instructions > sudo yum install python-cheetah > do not work for whatever reason. > > However doin a > > sudo yum install python27-cheetah.x86_64 > does the trick. > > EC2 instance is an Amazon Lin

Re: [weewx-user] New Install issues on Amazon EC2 instance - no index.html file

2018-10-16 Thread trrisner
Solution found. The instructions sudo yum install python-cheetah do not work for whatever reason. However doin a sudo yum install python27-cheetah.x86_64 does the trick. EC2 instance is an Amazon Linux flavor that is "red hat like" so this may be the difference, and may have different pyt

Re: [weewx-user] New Install issues on Amazon EC2 instance - no index.html file

2018-10-16 Thread Thomas Keffer
WeeWX does not deal directly with Cheetah. It depends on Python to locate and load any modules that it uses. To see where Python is looking, you can run this: *python -c "import sys; print sys.path"* Going back to something you said earlier: "cheetah-2.6 is located at /usr/bin/". That would be a

Re: [weewx-user] New Install issues on Amazon EC2 instance - no index.html file

2018-10-16 Thread trrisner
TK Can you tell me where weewx expects Cheetah to be located? -- 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 op

Re: [weewx-user] New Install issues on Amazon EC2 instance - no index.html file

2018-10-15 Thread trrisner
No worries TK. Confirmed that "no module named Cheetah" is the issue. Still working on the rest. Thanks! -- 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 weew

Re: [weewx-user] New Install issues on Amazon EC2 instance - no index.html file

2018-10-15 Thread Thomas Keffer
Sorry. Let me a little more explicit. But, first, let's try an experiment. Try running this: *python -c "import Cheetah; print Cheetah.__file__"* This will double check to see if the problem is what we think it is: that Python cannot find the Cheetah module. If you get an error message "No module

Re: [weewx-user] New Install issues on Amazon EC2 instance - no index.html file

2018-10-15 Thread trrisner
cheetah-2.6 is located at /usr/bin/ python is located at the same place. I could use some help on "run weewx with a PYTHONPATH..." -- 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,

Re: [weewx-user] New Install issues on Amazon EC2 instance - no index.html file

2018-10-15 Thread Thomas Keffer
For some reason, python is not finding the Cheetah module. You'll have to figure out where yum installed it, then either run weewx with a PYTHONPATH that specifies the location, or use a symbolic link from a more traditional Python library location to the location. -tk On Mon, Oct 15, 2018 at 3:

[weewx-user] New Install issues on Amazon EC2 instance - no index.html file

2018-10-15 Thread trrisner
I've installed weewx and it is up and running. Images are getting updated with the default install data, but there is no index.html getting created. I'm using Amazon's linux ec2 unit with Red Hat 7.2.1-2 python 2.7.14 and yes, i've run the sudo yum install python-configobj sudo yum install pyth