About Project.tomlPyPlot in Julia only showing plot when code endsSublime + IJulia: ZMQ library not foundInstalling Julia 0.4 in Ubuntu 15.10Install IJulia notebook on non-networked windows machine?Julia PyPlot segmentsError updating packages (0.4)Polymorphic functions and subtypes in juliaJulia - the way of kings (generator performance)Warning: Package xxxxx does not have POMDPSimulators in its dependencies in Julia if usual recommendations don't work.Entry point not found when embedding Julia in C with gcc on Windows
The lexical root of the past tense forms differs from the lexical root of the infinitive form
Why do Thanos's punches not kill Captain America or at least cause some mortal injuries?
Make all the squares explode
How are Core iX names like Core i5, i7 related to Haswell, Ivy Bridge?
Would an 8% reduction in drag outweigh the weight addition from this custom CFD-tested winglet?
Renting a house to a graduate student in my department
Thesis' "Future Work" section – is it acceptable to omit personal involvement in a mentioned project?
Delta TSA-Precheck status removed
What are some possible reasons that a father's name is missing from a birth certificate - England?
Can I do brevets (long distance rides) on my hybrid bike? If yes, how to start?
Why does a C.D.F need to be right-continuous?
find not returning expected files
How do I compare the result of "1d20+x, with advantage" to "1d20+y, without advantage", assuming x < y?
Two researchers want to work on the same extension to my paper. Who to help?
How to make a language evolve quickly?
Was this a power play by Daenerys?
What food production methods would allow a metropolis like New York to become self sufficient
Is Simic Ascendancy triggered by Awakening of Vitu-Ghazi?
Can the sorting of a list be verified without comparing neighbors?
Is it a Munchausen Number?
Why can't RGB or bicolour LEDs produce a decent yellow?
The lexical root of the perfect tense forms differs from the lexical root of the infinitive form
How to select certain lines (n, n+4, n+8, n+12...) from the file?
Looking for a simple way to manipulate one column of a matrix
About Project.toml
PyPlot in Julia only showing plot when code endsSublime + IJulia: ZMQ library not foundInstalling Julia 0.4 in Ubuntu 15.10Install IJulia notebook on non-networked windows machine?Julia PyPlot segmentsError updating packages (0.4)Polymorphic functions and subtypes in juliaJulia - the way of kings (generator performance)Warning: Package xxxxx does not have POMDPSimulators in its dependencies in Julia if usual recommendations don't work.Entry point not found when embedding Julia in C with gcc on Windows
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I would like to ask, before julia1.0, when configuring mybinder, I only need REQUIRE, format for example:
julia 0.6.0
PyCall
PyPlot
...
After updating to julia 1.1.0
, this doesn't seem to work anymore. I saw that it might be necessary to replace REQUIRE
with project.toml
, but how should project.toml
be generated if I only know the list of the packages names?
julia
add a comment |
I would like to ask, before julia1.0, when configuring mybinder, I only need REQUIRE, format for example:
julia 0.6.0
PyCall
PyPlot
...
After updating to julia 1.1.0
, this doesn't seem to work anymore. I saw that it might be necessary to replace REQUIRE
with project.toml
, but how should project.toml
be generated if I only know the list of the packages names?
julia
add a comment |
I would like to ask, before julia1.0, when configuring mybinder, I only need REQUIRE, format for example:
julia 0.6.0
PyCall
PyPlot
...
After updating to julia 1.1.0
, this doesn't seem to work anymore. I saw that it might be necessary to replace REQUIRE
with project.toml
, but how should project.toml
be generated if I only know the list of the packages names?
julia
I would like to ask, before julia1.0, when configuring mybinder, I only need REQUIRE, format for example:
julia 0.6.0
PyCall
PyPlot
...
After updating to julia 1.1.0
, this doesn't seem to work anymore. I saw that it might be necessary to replace REQUIRE
with project.toml
, but how should project.toml
be generated if I only know the list of the packages names?
julia
julia
asked Mar 23 at 10:45
ElliothuoElliothuo
202
202
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
In order to add packages Project.toml
Go to the folder where your project is located, for example
$ cd /home/myname/MyProject.jl
Start Julia
$ julia
- Press
]
to go to the package manager and typeactivate
:(v1.0) pkg> activate .
- Add the packages that you wish to add:
(MyProject.jl) pkg> add Test
- This will update the
Project.toml
file
Comments
If you do not have a
Project.toml
file to start with the recommended way is to generate one along a project folder using projecct manager the command:(v1.0) pkg> generate MyProject.jl
You still need to have the
REQUIRE
file to be present if you want to register official Julia packages (attobot needs them)
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fstackoverflow.com%2fquestions%2f55312893%2fabout-project-toml%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
In order to add packages Project.toml
Go to the folder where your project is located, for example
$ cd /home/myname/MyProject.jl
Start Julia
$ julia
- Press
]
to go to the package manager and typeactivate
:(v1.0) pkg> activate .
- Add the packages that you wish to add:
(MyProject.jl) pkg> add Test
- This will update the
Project.toml
file
Comments
If you do not have a
Project.toml
file to start with the recommended way is to generate one along a project folder using projecct manager the command:(v1.0) pkg> generate MyProject.jl
You still need to have the
REQUIRE
file to be present if you want to register official Julia packages (attobot needs them)
add a comment |
In order to add packages Project.toml
Go to the folder where your project is located, for example
$ cd /home/myname/MyProject.jl
Start Julia
$ julia
- Press
]
to go to the package manager and typeactivate
:(v1.0) pkg> activate .
- Add the packages that you wish to add:
(MyProject.jl) pkg> add Test
- This will update the
Project.toml
file
Comments
If you do not have a
Project.toml
file to start with the recommended way is to generate one along a project folder using projecct manager the command:(v1.0) pkg> generate MyProject.jl
You still need to have the
REQUIRE
file to be present if you want to register official Julia packages (attobot needs them)
add a comment |
In order to add packages Project.toml
Go to the folder where your project is located, for example
$ cd /home/myname/MyProject.jl
Start Julia
$ julia
- Press
]
to go to the package manager and typeactivate
:(v1.0) pkg> activate .
- Add the packages that you wish to add:
(MyProject.jl) pkg> add Test
- This will update the
Project.toml
file
Comments
If you do not have a
Project.toml
file to start with the recommended way is to generate one along a project folder using projecct manager the command:(v1.0) pkg> generate MyProject.jl
You still need to have the
REQUIRE
file to be present if you want to register official Julia packages (attobot needs them)
In order to add packages Project.toml
Go to the folder where your project is located, for example
$ cd /home/myname/MyProject.jl
Start Julia
$ julia
- Press
]
to go to the package manager and typeactivate
:(v1.0) pkg> activate .
- Add the packages that you wish to add:
(MyProject.jl) pkg> add Test
- This will update the
Project.toml
file
Comments
If you do not have a
Project.toml
file to start with the recommended way is to generate one along a project folder using projecct manager the command:(v1.0) pkg> generate MyProject.jl
You still need to have the
REQUIRE
file to be present if you want to register official Julia packages (attobot needs them)
answered Mar 23 at 19:05
Przemyslaw SzufelPrzemyslaw Szufel
3,125214
3,125214
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- 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.
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%2fstackoverflow.com%2fquestions%2f55312893%2fabout-project-toml%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