in reply to Re^7: LWP::Simple not installing on MAC OS Mojava
in thread LWP::Simple not installing on MAC OS Mojava
Hi Marto
Some success but puzzling? I was able to install the module and it did print out. But, only when the website url began with http. If it began https it would not work?
Just to clarify this code did not work:
where as this one did:use strict; use warnings; use LWP::Simple; sub main { print "Downloading......\n"; print get ("https://www.coursera.org/learn/mindshift/"); print "Completed\n"; } main();
use strict; use warnings; use LWP::Simple; sub main { print "Downloading......\n"; print get ("http://javascript.info/"); print "Completed\n"; } main();
Any advice on dealing with this would be great if you happen to know what the issue might be?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^9: LWP::Simple not installing on MAC OS Mojava
by marto (Cardinal) on Mar 06, 2019 at 06:39 UTC | |
by JD (Novice) on Mar 06, 2019 at 16:28 UTC | |
by marto (Cardinal) on Mar 06, 2019 at 18:29 UTC |