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;
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:
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/
- Reinstall Visual Studio (I tried both Community Edition, Standard Edition)
- Reboot my machine three times
- Delete all breakpoints
- Disable Resharper
Two more observations:
I never had this issue prior to today
Python Interactive Debugger stopped working today - it refuse to print anything!
myDataFrame.head()
print("hello")
python visual-studio
add a comment |
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:
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/
- Reinstall Visual Studio (I tried both Community Edition, Standard Edition)
- Reboot my machine three times
- Delete all breakpoints
- Disable Resharper
Two more observations:
I never had this issue prior to today
Python Interactive Debugger stopped working today - it refuse to print anything!
myDataFrame.head()
print("hello")
python visual-studio
add a comment |
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:
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/
- Reinstall Visual Studio (I tried both Community Edition, Standard Edition)
- Reboot my machine three times
- Delete all breakpoints
- Disable Resharper
Two more observations:
I never had this issue prior to today
Python Interactive Debugger stopped working today - it refuse to print anything!
myDataFrame.head()
print("hello")
python visual-studio
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:
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/
- Reinstall Visual Studio (I tried both Community Edition, Standard Edition)
- Reboot my machine three times
- Delete all breakpoints
- Disable Resharper
Two more observations:
I never had this issue prior to today
Python Interactive Debugger stopped working today - it refuse to print anything!
myDataFrame.head()
print("hello")
python visual-studio
python visual-studio
edited Mar 27 at 20:47
user3761555
asked Mar 27 at 20:23
user3761555user3761555
568 bronze badges
568 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Fixed!!
I deleted my Visual Studio solution and project file. Create the python project brand new, all fixed!
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%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
Fixed!!
I deleted my Visual Studio solution and project file. Create the python project brand new, all fixed!
add a comment |
Fixed!!
I deleted my Visual Studio solution and project file. Create the python project brand new, all fixed!
add a comment |
Fixed!!
I deleted my Visual Studio solution and project file. Create the python project brand new, all fixed!
Fixed!!
I deleted my Visual Studio solution and project file. Create the python project brand new, all fixed!
answered Mar 28 at 13:44
user3761555user3761555
568 bronze badges
568 bronze badges
add a comment |
add a comment |
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.
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%2f55385840%2fdebug-python-visual-studio-startup-very-slow-load-module%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