You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
conda install spyder
1. Enable interactive 3d plots in Spyder by going to Tools > Preferences > IPython Console > Graphics.
From this page, set Backend to Automatic.
2. When you run scripts, if they load up other files (such as datasets or other scripts),
Spyder may need to have it's current working directory set to the location where your script is running from.
Without this, you'll have to use absolute paths rather of relative ones to locate anything! You can change
Spyder's CWD by clicking on Configure from the Run menu. Or alternatively, you can do it in your source code
directly by adding: os.chdir('/Full/Dir/Path/Here'). Alternatively, you can do it directly in the interactive
IPython console during runtime using %cd /Full/Dir/Path/Here. If you ever run into a 'file-not-found' error,
your current working directory is probably out of sync.