This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author heihaa
Recipients heihaa
Date 2018-09-22.20:13:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1537647190.0.0.956365154283.issue34772@psf.upfronthosting.co.za>
In-reply-to
Content
Hi! I am experience a very strange behavior. As a student I've been using Spyder for my Python coding assignments. But some days ago I wanted to try out the Python environment in Visual Studio. So, I installed python environment in VS. But after that, none of even my simplest codes will produce any plots anymore. Even if I try the exact same code as I for sure know been showing a plot before. Initally I had a error message saying something like "mkl_aa_fw_init_workdivision...." + some more info and directory reference. So after some googling I deleted a mkl file in the directory witch was mentioned in the error message. After that there is no error message, but still no plot. If I try a simple test code like this:

import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0,5,11)
y = x**2
plt.plot(x,y)

The only thing happening is Ipython console says "Kernel died, restarting". Also in Visual Studio, there is no plot coming up.I have no idea about the cause and how to fix it, even after hours of search and trial. Really frustrating to use time on this instead of my assignments. The only difference befor, when it was working, and after, is that I tried the Visual Studio environment. I highly appreciate help on this issue!
History
Date User Action Args
2018-09-22 20:13:10heihaasetrecipients: + heihaa
2018-09-22 20:13:10heihaasetmessageid: <1537647190.0.0.956365154283.issue34772@psf.upfronthosting.co.za>
2018-09-22 20:13:09heihaalinkissue34772 messages
2018-09-22 20:13:09heihaacreate