Debug python Visual Studio Startup very slow - load moduleShould I add the Visual Studio .suo and .user files to source control?How to run Visual Studio post-build events for debug build onlyHow do I add an existing directory tree to a project in Visual Studio?Using Git with Visual Studio.gitignore for Visual Studio Projects and SolutionsHow do I remedy the “The breakpoint will not currently be hit. No symbols have been loaded for this document.” warning?Difference between Build Solution, Rebuild Solution, and Clean Solution in Visual Studio?Visual Studio loading symbolsCan you force Visual Studio to always run as an Administrator in Windows 8?Visual Studio debugging/loading very slow

Why does a sticker slowly peel off, but if it is pulled quickly it tears?

Why didn't Doc believe Marty was from the future?

Half filled water bottle

How do we improve collaboration with problematic tester team?

Can’t change phone time - set automatic time grayed out

Did ancient peoples ever hide their treasure behind puzzles?

Why can't UK MPs vote for the Withdrawal Agreement, then renege on the backstop if it comes to that?

Thought experiment and possible contradiction between electromagnetism and special relativity

Can I get a PhD for developing an educational software?

Is the Amazon rainforest the "world's lungs"?

Pen test results for web application include a file from a forbidden directory that is not even used or referenced

Recommended Breathing Exercises to Play Woodwinds

Book featuring a child learning from a crowdsourced AI book

A probably wrong proof of the Riemann Hypothesis, but where is the mistake?

How could a self contained organic body propel itself in space

How to display a duck or marmot swallowed by a darkhole

Is there a word or phrase that means "use other people's wifi or Internet service without consent"?

How to get my graph draw larger?

Why did my folder names end up like this, and how can I fix this using a script?

rationalizing sieges in a modern/near-future setting

How to prevent a hosting company from accessing a VM's encryption keys?

Do sharpies or markers damage soft gear?

74S vs 74LS ICs

Would Epic Heroism be an acceptable rule variant for a small, first-time group playing the Lost Mine of Phandelver adventure?



Debug python Visual Studio Startup very slow - load module


Should I add the Visual Studio .suo and .user files to source control?How to run Visual Studio post-build events for debug build onlyHow do I add an existing directory tree to a project in Visual Studio?Using Git with Visual Studio.gitignore for Visual Studio Projects and SolutionsHow do I remedy the “The breakpoint will not currently be hit. No symbols have been loaded for this document.” warning?Difference between Build Solution, Rebuild Solution, and Clean Solution in Visual Studio?Visual Studio loading symbolsCan you force Visual Studio to always run as an Administrator in Windows 8?Visual Studio debugging/loading very slow






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















When start debug from Visual Studio, it takes like 2 minutes to hit the first line of python code. Apparently Visual Studio is busy loading python modules.



python.exe' (Win32): Loaded 'C:ProgramDataAnaconda3python.exe'. Symbols loaded.



'python.exe' (Win32): Loaded 'xxxxx'. Cannot find or open the PDB file.
... many more ...



I tried below, no joy:




  1. Tools Options Debugging



    a) Enable Just My Code checked



    b) Just-In-Time Debugging - only selected Managed and Script



    c) Symbols



    • unchecked "Microsoft Symbol Servers"

    • "Load all modules, unless excluded" or "Load only specified modules" (tried both)


https://devblogs.microsoft.com/devops/make-debugging-faster-with-visual-studio/



  1. Reinstall Visual Studio (I tried both Community Edition, Standard Edition)

  2. Reboot my machine three times

  3. Delete all breakpoints

  4. Disable Resharper

Two more observations:



  1. I never had this issue prior to today



  2. Python Interactive Debugger stopped working today - it refuse to print anything!



    myDataFrame.head()



    print("hello")











share|improve this question
































    1















    When start debug from Visual Studio, it takes like 2 minutes to hit the first line of python code. Apparently Visual Studio is busy loading python modules.



    python.exe' (Win32): Loaded 'C:ProgramDataAnaconda3python.exe'. Symbols loaded.



    'python.exe' (Win32): Loaded 'xxxxx'. Cannot find or open the PDB file.
    ... many more ...



    I tried below, no joy:




    1. Tools Options Debugging



      a) Enable Just My Code checked



      b) Just-In-Time Debugging - only selected Managed and Script



      c) Symbols



      • unchecked "Microsoft Symbol Servers"

      • "Load all modules, unless excluded" or "Load only specified modules" (tried both)


    https://devblogs.microsoft.com/devops/make-debugging-faster-with-visual-studio/



    1. Reinstall Visual Studio (I tried both Community Edition, Standard Edition)

    2. Reboot my machine three times

    3. Delete all breakpoints

    4. Disable Resharper

    Two more observations:



    1. I never had this issue prior to today



    2. Python Interactive Debugger stopped working today - it refuse to print anything!



      myDataFrame.head()



      print("hello")











    share|improve this question




























      1












      1








      1








      When start debug from Visual Studio, it takes like 2 minutes to hit the first line of python code. Apparently Visual Studio is busy loading python modules.



      python.exe' (Win32): Loaded 'C:ProgramDataAnaconda3python.exe'. Symbols loaded.



      'python.exe' (Win32): Loaded 'xxxxx'. Cannot find or open the PDB file.
      ... many more ...



      I tried below, no joy:




      1. Tools Options Debugging



        a) Enable Just My Code checked



        b) Just-In-Time Debugging - only selected Managed and Script



        c) Symbols



        • unchecked "Microsoft Symbol Servers"

        • "Load all modules, unless excluded" or "Load only specified modules" (tried both)


      https://devblogs.microsoft.com/devops/make-debugging-faster-with-visual-studio/



      1. Reinstall Visual Studio (I tried both Community Edition, Standard Edition)

      2. Reboot my machine three times

      3. Delete all breakpoints

      4. Disable Resharper

      Two more observations:



      1. I never had this issue prior to today



      2. Python Interactive Debugger stopped working today - it refuse to print anything!



        myDataFrame.head()



        print("hello")











      share|improve this question
















      When start debug from Visual Studio, it takes like 2 minutes to hit the first line of python code. Apparently Visual Studio is busy loading python modules.



      python.exe' (Win32): Loaded 'C:ProgramDataAnaconda3python.exe'. Symbols loaded.



      'python.exe' (Win32): Loaded 'xxxxx'. Cannot find or open the PDB file.
      ... many more ...



      I tried below, no joy:




      1. Tools Options Debugging



        a) Enable Just My Code checked



        b) Just-In-Time Debugging - only selected Managed and Script



        c) Symbols



        • unchecked "Microsoft Symbol Servers"

        • "Load all modules, unless excluded" or "Load only specified modules" (tried both)


      https://devblogs.microsoft.com/devops/make-debugging-faster-with-visual-studio/



      1. Reinstall Visual Studio (I tried both Community Edition, Standard Edition)

      2. Reboot my machine three times

      3. Delete all breakpoints

      4. Disable Resharper

      Two more observations:



      1. I never had this issue prior to today



      2. Python Interactive Debugger stopped working today - it refuse to print anything!



        myDataFrame.head()



        print("hello")








      python visual-studio






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 27 at 20:47







      user3761555

















      asked Mar 27 at 20:23









      user3761555user3761555

      568 bronze badges




      568 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          0















          Fixed!!
          I deleted my Visual Studio solution and project file. Create the python project brand new, all fixed!






          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%2f55385840%2fdebug-python-visual-studio-startup-very-slow-load-module%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















            Fixed!!
            I deleted my Visual Studio solution and project file. Create the python project brand new, all fixed!






            share|improve this answer





























              0















              Fixed!!
              I deleted my Visual Studio solution and project file. Create the python project brand new, all fixed!






              share|improve this answer



























                0














                0










                0









                Fixed!!
                I deleted my Visual Studio solution and project file. Create the python project brand new, all fixed!






                share|improve this answer













                Fixed!!
                I deleted my Visual Studio solution and project file. Create the python project brand new, all fixed!







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 28 at 13:44









                user3761555user3761555

                568 bronze badges




                568 bronze badges





















                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







                    Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















                    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%2f55385840%2fdebug-python-visual-studio-startup-very-slow-load-module%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

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

                    155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해