Mathematica ExtraPackage
$begingroup$
Where can I install the Wolfram ExtraPackages? Especially the "Notation`"
package? I do not seem to have it by default (In the Utilities, I have only two documents, called CleanSlate.m and URLTools.m) and I cannot find any information on that.
packages custom-notation installation
$endgroup$
add a comment |
$begingroup$
Where can I install the Wolfram ExtraPackages? Especially the "Notation`"
package? I do not seem to have it by default (In the Utilities, I have only two documents, called CleanSlate.m and URLTools.m) and I cannot find any information on that.
packages custom-notation installation
$endgroup$
add a comment |
$begingroup$
Where can I install the Wolfram ExtraPackages? Especially the "Notation`"
package? I do not seem to have it by default (In the Utilities, I have only two documents, called CleanSlate.m and URLTools.m) and I cannot find any information on that.
packages custom-notation installation
$endgroup$
Where can I install the Wolfram ExtraPackages? Especially the "Notation`"
package? I do not seem to have it by default (In the Utilities, I have only two documents, called CleanSlate.m and URLTools.m) and I cannot find any information on that.
packages custom-notation installation
packages custom-notation installation
edited Feb 12 at 8:56
Alexey Popkov
38.7k4108265
38.7k4108265
asked Jan 7 at 18:55
Patrick.BPatrick.B
32710
32710
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
You can easily get the path to any installed package file using FindFile
, for example:
FindFile["Notation`"]
"C:\Program Files\Wolfram Research\Mathematica\11.3\AddOns\Packages\Notation\Kernel\init.m"
If the package isn't installed, you could search it in several places on the Internet. Don't forget about this site, old Wolfram Library Archive and also brand-new Wolfram Function Repository.
$endgroup$
add a comment |
$begingroup$
Oh ok, so after some further reading, it seems that doing:
<< Notation`
does the trick. I was trying to do something like
Needs[Utilities`Notation`]
but with no success. I am not very sure where Wolfram takes the package from though?
$endgroup$
4
$begingroup$
I believe the Notation package can be found by callingSystemOpen[$InstallationDirectory]
and then navigating to the folder AddOns > Packages. These are all preinstalled packages, they just aren't loaded into system memory when Mathematica is opened (presumably to reduce load times and memory usage for typically non-critical packages).
$endgroup$
– MassDefect
Jan 7 at 19:19
$begingroup$
It is exactly as MassDefect said. You can open the folder directly withSystemOpen@ FileNameJoin[{$InstallationDirectory, "AddOns", "Packages", "Notation"}]
.
$endgroup$
– Henrik Schumacher
Jan 7 at 19:33
1
$begingroup$
and you could have usedNeeds["Notation`"]
orGet["Notation`"]
just as well.<<
is just a shortcut forGet
and will automatically convert its argument into a string. BothGet
andNeeds
should work and usuallyNeeds
is the better choice.
$endgroup$
– Albert Retey
Feb 14 at 14:08
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "387"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f188999%2fmathematica-extrapackage%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
You can easily get the path to any installed package file using FindFile
, for example:
FindFile["Notation`"]
"C:\Program Files\Wolfram Research\Mathematica\11.3\AddOns\Packages\Notation\Kernel\init.m"
If the package isn't installed, you could search it in several places on the Internet. Don't forget about this site, old Wolfram Library Archive and also brand-new Wolfram Function Repository.
$endgroup$
add a comment |
$begingroup$
You can easily get the path to any installed package file using FindFile
, for example:
FindFile["Notation`"]
"C:\Program Files\Wolfram Research\Mathematica\11.3\AddOns\Packages\Notation\Kernel\init.m"
If the package isn't installed, you could search it in several places on the Internet. Don't forget about this site, old Wolfram Library Archive and also brand-new Wolfram Function Repository.
$endgroup$
add a comment |
$begingroup$
You can easily get the path to any installed package file using FindFile
, for example:
FindFile["Notation`"]
"C:\Program Files\Wolfram Research\Mathematica\11.3\AddOns\Packages\Notation\Kernel\init.m"
If the package isn't installed, you could search it in several places on the Internet. Don't forget about this site, old Wolfram Library Archive and also brand-new Wolfram Function Repository.
$endgroup$
You can easily get the path to any installed package file using FindFile
, for example:
FindFile["Notation`"]
"C:\Program Files\Wolfram Research\Mathematica\11.3\AddOns\Packages\Notation\Kernel\init.m"
If the package isn't installed, you could search it in several places on the Internet. Don't forget about this site, old Wolfram Library Archive and also brand-new Wolfram Function Repository.
edited Feb 12 at 8:54
answered Feb 11 at 19:01
Alexey PopkovAlexey Popkov
38.7k4108265
38.7k4108265
add a comment |
add a comment |
$begingroup$
Oh ok, so after some further reading, it seems that doing:
<< Notation`
does the trick. I was trying to do something like
Needs[Utilities`Notation`]
but with no success. I am not very sure where Wolfram takes the package from though?
$endgroup$
4
$begingroup$
I believe the Notation package can be found by callingSystemOpen[$InstallationDirectory]
and then navigating to the folder AddOns > Packages. These are all preinstalled packages, they just aren't loaded into system memory when Mathematica is opened (presumably to reduce load times and memory usage for typically non-critical packages).
$endgroup$
– MassDefect
Jan 7 at 19:19
$begingroup$
It is exactly as MassDefect said. You can open the folder directly withSystemOpen@ FileNameJoin[{$InstallationDirectory, "AddOns", "Packages", "Notation"}]
.
$endgroup$
– Henrik Schumacher
Jan 7 at 19:33
1
$begingroup$
and you could have usedNeeds["Notation`"]
orGet["Notation`"]
just as well.<<
is just a shortcut forGet
and will automatically convert its argument into a string. BothGet
andNeeds
should work and usuallyNeeds
is the better choice.
$endgroup$
– Albert Retey
Feb 14 at 14:08
add a comment |
$begingroup$
Oh ok, so after some further reading, it seems that doing:
<< Notation`
does the trick. I was trying to do something like
Needs[Utilities`Notation`]
but with no success. I am not very sure where Wolfram takes the package from though?
$endgroup$
4
$begingroup$
I believe the Notation package can be found by callingSystemOpen[$InstallationDirectory]
and then navigating to the folder AddOns > Packages. These are all preinstalled packages, they just aren't loaded into system memory when Mathematica is opened (presumably to reduce load times and memory usage for typically non-critical packages).
$endgroup$
– MassDefect
Jan 7 at 19:19
$begingroup$
It is exactly as MassDefect said. You can open the folder directly withSystemOpen@ FileNameJoin[{$InstallationDirectory, "AddOns", "Packages", "Notation"}]
.
$endgroup$
– Henrik Schumacher
Jan 7 at 19:33
1
$begingroup$
and you could have usedNeeds["Notation`"]
orGet["Notation`"]
just as well.<<
is just a shortcut forGet
and will automatically convert its argument into a string. BothGet
andNeeds
should work and usuallyNeeds
is the better choice.
$endgroup$
– Albert Retey
Feb 14 at 14:08
add a comment |
$begingroup$
Oh ok, so after some further reading, it seems that doing:
<< Notation`
does the trick. I was trying to do something like
Needs[Utilities`Notation`]
but with no success. I am not very sure where Wolfram takes the package from though?
$endgroup$
Oh ok, so after some further reading, it seems that doing:
<< Notation`
does the trick. I was trying to do something like
Needs[Utilities`Notation`]
but with no success. I am not very sure where Wolfram takes the package from though?
edited Jan 7 at 19:07
Henrik Schumacher
60.2k582169
60.2k582169
answered Jan 7 at 19:04
Patrick.BPatrick.B
32710
32710
4
$begingroup$
I believe the Notation package can be found by callingSystemOpen[$InstallationDirectory]
and then navigating to the folder AddOns > Packages. These are all preinstalled packages, they just aren't loaded into system memory when Mathematica is opened (presumably to reduce load times and memory usage for typically non-critical packages).
$endgroup$
– MassDefect
Jan 7 at 19:19
$begingroup$
It is exactly as MassDefect said. You can open the folder directly withSystemOpen@ FileNameJoin[{$InstallationDirectory, "AddOns", "Packages", "Notation"}]
.
$endgroup$
– Henrik Schumacher
Jan 7 at 19:33
1
$begingroup$
and you could have usedNeeds["Notation`"]
orGet["Notation`"]
just as well.<<
is just a shortcut forGet
and will automatically convert its argument into a string. BothGet
andNeeds
should work and usuallyNeeds
is the better choice.
$endgroup$
– Albert Retey
Feb 14 at 14:08
add a comment |
4
$begingroup$
I believe the Notation package can be found by callingSystemOpen[$InstallationDirectory]
and then navigating to the folder AddOns > Packages. These are all preinstalled packages, they just aren't loaded into system memory when Mathematica is opened (presumably to reduce load times and memory usage for typically non-critical packages).
$endgroup$
– MassDefect
Jan 7 at 19:19
$begingroup$
It is exactly as MassDefect said. You can open the folder directly withSystemOpen@ FileNameJoin[{$InstallationDirectory, "AddOns", "Packages", "Notation"}]
.
$endgroup$
– Henrik Schumacher
Jan 7 at 19:33
1
$begingroup$
and you could have usedNeeds["Notation`"]
orGet["Notation`"]
just as well.<<
is just a shortcut forGet
and will automatically convert its argument into a string. BothGet
andNeeds
should work and usuallyNeeds
is the better choice.
$endgroup$
– Albert Retey
Feb 14 at 14:08
4
4
$begingroup$
I believe the Notation package can be found by calling
SystemOpen[$InstallationDirectory]
and then navigating to the folder AddOns > Packages. These are all preinstalled packages, they just aren't loaded into system memory when Mathematica is opened (presumably to reduce load times and memory usage for typically non-critical packages).$endgroup$
– MassDefect
Jan 7 at 19:19
$begingroup$
I believe the Notation package can be found by calling
SystemOpen[$InstallationDirectory]
and then navigating to the folder AddOns > Packages. These are all preinstalled packages, they just aren't loaded into system memory when Mathematica is opened (presumably to reduce load times and memory usage for typically non-critical packages).$endgroup$
– MassDefect
Jan 7 at 19:19
$begingroup$
It is exactly as MassDefect said. You can open the folder directly with
SystemOpen@ FileNameJoin[{$InstallationDirectory, "AddOns", "Packages", "Notation"}]
.$endgroup$
– Henrik Schumacher
Jan 7 at 19:33
$begingroup$
It is exactly as MassDefect said. You can open the folder directly with
SystemOpen@ FileNameJoin[{$InstallationDirectory, "AddOns", "Packages", "Notation"}]
.$endgroup$
– Henrik Schumacher
Jan 7 at 19:33
1
1
$begingroup$
and you could have used
Needs["Notation`"]
or Get["Notation`"]
just as well. <<
is just a shortcut for Get
and will automatically convert its argument into a string. Both Get
and Needs
should work and usually Needs
is the better choice.$endgroup$
– Albert Retey
Feb 14 at 14:08
$begingroup$
and you could have used
Needs["Notation`"]
or Get["Notation`"]
just as well. <<
is just a shortcut for Get
and will automatically convert its argument into a string. Both Get
and Needs
should work and usually Needs
is the better choice.$endgroup$
– Albert Retey
Feb 14 at 14:08
add a comment |
Thanks for contributing an answer to Mathematica Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f188999%2fmathematica-extrapackage%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown