We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1d0636 commit a2ece90Copy full SHA for a2ece90
lib/package.gi
@@ -1422,6 +1422,12 @@ InstallGlobalFunction( LoadPackage, function( arg )
1422
if not IsBound( GAPInfo.PackagesInfo.( name ) ) then
1423
LogPackageLoadingMessage( PACKAGE_DEBUG,
1424
"no package with this name is installed, return 'fail'", name );
1425
+ if InfoLevel(InfoPackageLoading) < 4 then
1426
+ Info(InfoWarning,1, name, " package is not available");
1427
+ Info(InfoWarning,1, "Check that the package name is correct and it is located in the 'pkg'");
1428
+ Info(InfoWarning,1, "subdirectory of your GAP installation or in the 'pkg' subdirectory");
1429
+ Info(InfoWarning,1, "of at least one of the directories given by 'GAPInfo.RootPaths'");
1430
+ fi;
1431
return fail;
1432
fi;
1433
0 commit comments