How to change django manage.py default shell











up vote
2
down vote

favorite












I've just installed Anaconda and what's annoying that after executing:



python manage.py shell


The IPython shell is used. I'd like to change it back to default Python distribution. I'm using Visual Studio Code and already changed it interpreter to default python 3.6. Moreover the



python


command runs normal python distribution, and the problem exists both in Visual Studio and normal cmd terminal.










share|improve this question


























    up vote
    2
    down vote

    favorite












    I've just installed Anaconda and what's annoying that after executing:



    python manage.py shell


    The IPython shell is used. I'd like to change it back to default Python distribution. I'm using Visual Studio Code and already changed it interpreter to default python 3.6. Moreover the



    python


    command runs normal python distribution, and the problem exists both in Visual Studio and normal cmd terminal.










    share|improve this question
























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      I've just installed Anaconda and what's annoying that after executing:



      python manage.py shell


      The IPython shell is used. I'd like to change it back to default Python distribution. I'm using Visual Studio Code and already changed it interpreter to default python 3.6. Moreover the



      python


      command runs normal python distribution, and the problem exists both in Visual Studio and normal cmd terminal.










      share|improve this question













      I've just installed Anaconda and what's annoying that after executing:



      python manage.py shell


      The IPython shell is used. I'd like to change it back to default Python distribution. I'm using Visual Studio Code and already changed it interpreter to default python 3.6. Moreover the



      python


      command runs normal python distribution, and the problem exists both in Visual Studio and normal cmd terminal.







      python django shell anaconda ipython






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 7 at 22:29









      tikej

      244




      244
























          2 Answers
          2






          active

          oldest

          votes

















          up vote
          2
          down vote













          Django 1.10+:



          python manage.py shell --interface python


          Django < 1.10:



          python manage.py shell --plain





          share|improve this answer






























            up vote
            0
            down vote













            i dont know if you have used shell_plus.



            install django-extensions, then use python manage.py shell_plus



            shell plus is a very great tool.



            you can use shell / shell_plus to have a plain interface



            python manage.py shell_plus --plain


            Note:- its not recommended to use django-extension in prod versions. But i'm sure you would love shell_plus, as this would reduce the headache of importing all models.






            share|improve this answer





















            • I know this answer, it's just that I'd prefere to use original shell. At least to know how to change between original, anaconda, and shell-plus shells.
              – tikej
              Nov 8 at 10:54











            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',
            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%2f53198860%2fhow-to-change-django-manage-py-default-shell%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








            up vote
            2
            down vote













            Django 1.10+:



            python manage.py shell --interface python


            Django < 1.10:



            python manage.py shell --plain





            share|improve this answer



























              up vote
              2
              down vote













              Django 1.10+:



              python manage.py shell --interface python


              Django < 1.10:



              python manage.py shell --plain





              share|improve this answer

























                up vote
                2
                down vote










                up vote
                2
                down vote









                Django 1.10+:



                python manage.py shell --interface python


                Django < 1.10:



                python manage.py shell --plain





                share|improve this answer














                Django 1.10+:



                python manage.py shell --interface python


                Django < 1.10:



                python manage.py shell --plain






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Nov 7 at 22:38

























                answered Nov 7 at 22:33









                wim

                155k47294424




                155k47294424
























                    up vote
                    0
                    down vote













                    i dont know if you have used shell_plus.



                    install django-extensions, then use python manage.py shell_plus



                    shell plus is a very great tool.



                    you can use shell / shell_plus to have a plain interface



                    python manage.py shell_plus --plain


                    Note:- its not recommended to use django-extension in prod versions. But i'm sure you would love shell_plus, as this would reduce the headache of importing all models.






                    share|improve this answer





















                    • I know this answer, it's just that I'd prefere to use original shell. At least to know how to change between original, anaconda, and shell-plus shells.
                      – tikej
                      Nov 8 at 10:54















                    up vote
                    0
                    down vote













                    i dont know if you have used shell_plus.



                    install django-extensions, then use python manage.py shell_plus



                    shell plus is a very great tool.



                    you can use shell / shell_plus to have a plain interface



                    python manage.py shell_plus --plain


                    Note:- its not recommended to use django-extension in prod versions. But i'm sure you would love shell_plus, as this would reduce the headache of importing all models.






                    share|improve this answer





















                    • I know this answer, it's just that I'd prefere to use original shell. At least to know how to change between original, anaconda, and shell-plus shells.
                      – tikej
                      Nov 8 at 10:54













                    up vote
                    0
                    down vote










                    up vote
                    0
                    down vote









                    i dont know if you have used shell_plus.



                    install django-extensions, then use python manage.py shell_plus



                    shell plus is a very great tool.



                    you can use shell / shell_plus to have a plain interface



                    python manage.py shell_plus --plain


                    Note:- its not recommended to use django-extension in prod versions. But i'm sure you would love shell_plus, as this would reduce the headache of importing all models.






                    share|improve this answer












                    i dont know if you have used shell_plus.



                    install django-extensions, then use python manage.py shell_plus



                    shell plus is a very great tool.



                    you can use shell / shell_plus to have a plain interface



                    python manage.py shell_plus --plain


                    Note:- its not recommended to use django-extension in prod versions. But i'm sure you would love shell_plus, as this would reduce the headache of importing all models.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Nov 8 at 0:19









                    Seshadri VS

                    18313




                    18313












                    • I know this answer, it's just that I'd prefere to use original shell. At least to know how to change between original, anaconda, and shell-plus shells.
                      – tikej
                      Nov 8 at 10:54


















                    • I know this answer, it's just that I'd prefere to use original shell. At least to know how to change between original, anaconda, and shell-plus shells.
                      – tikej
                      Nov 8 at 10:54
















                    I know this answer, it's just that I'd prefere to use original shell. At least to know how to change between original, anaconda, and shell-plus shells.
                    – tikej
                    Nov 8 at 10:54




                    I know this answer, it's just that I'd prefere to use original shell. At least to know how to change between original, anaconda, and shell-plus shells.
                    – tikej
                    Nov 8 at 10:54


















                    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.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • 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%2f53198860%2fhow-to-change-django-manage-py-default-shell%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







                    這個網誌中的熱門文章

                    Tangent Lines Diagram Along Smooth Curve

                    Yusuf al-Mu'taman ibn Hud

                    Zucchini