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;








2















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?










share|improve this question




























    2















    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?










    share|improve this question
























      2












      2








      2








      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?










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 23 at 10:45









      ElliothuoElliothuo

      202




      202






















          1 Answer
          1






          active

          oldest

          votes


















          0














          In order to add packages Project.toml




          1. Go to the folder where your project is located, for example



            $ cd /home/myname/MyProject.jl



          2. Start Julia



            $ julia


          3. Press ] to go to the package manager and type activate:

            (v1.0) pkg> activate . 


          4. Add the packages that you wish to add:

            (MyProject.jl) pkg> add Test


          5. This will update the Project.toml file

          Comments



          1. 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


          2. You still need to have the REQUIRE file to be present if you want to register official Julia packages (attobot needs them)






          share|improve this answer























            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
            );



            );













            draft saved

            draft discarded


















            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









            0














            In order to add packages Project.toml




            1. Go to the folder where your project is located, for example



              $ cd /home/myname/MyProject.jl



            2. Start Julia



              $ julia


            3. Press ] to go to the package manager and type activate:

              (v1.0) pkg> activate . 


            4. Add the packages that you wish to add:

              (MyProject.jl) pkg> add Test


            5. This will update the Project.toml file

            Comments



            1. 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


            2. You still need to have the REQUIRE file to be present if you want to register official Julia packages (attobot needs them)






            share|improve this answer



























              0














              In order to add packages Project.toml




              1. Go to the folder where your project is located, for example



                $ cd /home/myname/MyProject.jl



              2. Start Julia



                $ julia


              3. Press ] to go to the package manager and type activate:

                (v1.0) pkg> activate . 


              4. Add the packages that you wish to add:

                (MyProject.jl) pkg> add Test


              5. This will update the Project.toml file

              Comments



              1. 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


              2. You still need to have the REQUIRE file to be present if you want to register official Julia packages (attobot needs them)






              share|improve this answer

























                0












                0








                0







                In order to add packages Project.toml




                1. Go to the folder where your project is located, for example



                  $ cd /home/myname/MyProject.jl



                2. Start Julia



                  $ julia


                3. Press ] to go to the package manager and type activate:

                  (v1.0) pkg> activate . 


                4. Add the packages that you wish to add:

                  (MyProject.jl) pkg> add Test


                5. This will update the Project.toml file

                Comments



                1. 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


                2. You still need to have the REQUIRE file to be present if you want to register official Julia packages (attobot needs them)






                share|improve this answer













                In order to add packages Project.toml




                1. Go to the folder where your project is located, for example



                  $ cd /home/myname/MyProject.jl



                2. Start Julia



                  $ julia


                3. Press ] to go to the package manager and type activate:

                  (v1.0) pkg> activate . 


                4. Add the packages that you wish to add:

                  (MyProject.jl) pkg> add Test


                5. This will update the Project.toml file

                Comments



                1. 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


                2. You still need to have the REQUIRE file to be present if you want to register official Julia packages (attobot needs them)







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 23 at 19:05









                Przemyslaw SzufelPrzemyslaw Szufel

                3,125214




                3,125214





























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript