Add PackageManager to default PackagesToLoad #5972
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds PackageManager to the list of packages loaded by default at startup.
PackageManager is a helpful tool for beginners, and it's also quite lightweight and distributed with GAP. I've talked a number of beginners through setting up GAP and its packages (people who haven't yet understood gap.ini files and so on) and sometimes I have to tell them to run
LoadPackage("PackageManager");
several times in just a few minutes when they're restarting GAP, running tests and so on. This would reduce that barrier and make it easier to do things with packages quickly.Having said this, I'm aware
PackagesToLoad
is an exclusive list that shouldn't be edited lightly. If there are reasons to keep the list lean, I won't be offended if someone closes this PR!Text for release notes
"The GAP package manager is now loaded automatically at startup by default."