You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to install Padre 1.00 on my Ubuntu 18.10 laptop (perl version 5.29.8) with cpanm but ran into issue #33. So I tried to download tar ball:
cpan -g Padre
perlbrew use 5.29.8-threads
tar zxvf Padre-1.00.tar.gz
cd Padre-1.00
Then edited the file lib/Padre/Wx/Main.pm and changed line 5564 according to pull #34
Then edited file lib/Padre/Locker.pm line 105 and commented out the line: Padre::DB->begin;
according to: DBD-SQLite/DBD-SQLite#10
Now running perl Makefile.PL gives
Can't locate inc/Module/Install.pm in @INC
I fixed this issue by changing line #7 in Makefile.PL to include the dot (current directory):
use lib '.', 'privinc';
The text was updated successfully, but these errors were encountered:
I tried to install Padre 1.00 on my Ubuntu 18.10 laptop (perl version 5.29.8) with
cpanm
but ran into issue #33. So I tried to download tar ball:Then edited the file
lib/Padre/Wx/Main.pm
and changed line 5564 according to pull #34Then edited file
lib/Padre/Locker.pm
line 105 and commented out the line:Padre::DB->begin;
according to: DBD-SQLite/DBD-SQLite#10
Now running
perl Makefile.PL
givesI fixed this issue by changing line #7 in
Makefile.PL
to include the dot (current directory):The text was updated successfully, but these errors were encountered: