Memory access error (memory dumped) when try to start spyder
See original GitHub issueIssue Report Checklist
- Searched the issues page for similar reports
- Read the relevant sections of the Spyder Troubleshooting Guide and followed its advice
- Reproduced the issue after updating with
conda update spyder
(orpip
, if not using Anaconda) - Could not reproduce inside
jupyter qtconsole
(if console-related) - Tried basic troubleshooting (if a bug/error)
- Restarted Spyder
- Reset preferences with
spyder --reset
- Reinstalled the latest version of Anaconda
- Tried the other applicable steps from the Troubleshooting Guide
- Completed the Problem Description, Steps to Reproduce and Version sections below
Problem Description
The error occur when I start Spyder with the terminal or with the Anaconda Navigator. Spyder don’t start and in the terminal the error message occur.
What steps reproduce the problem?
- Start Spyder with the terminal
- Start Spyder with the Anaconda Navigator
- Start the Qtconsole with the Anaconda Navigator
What is the expected output? What do you see instead?
I want to start Spyder, instead it don’t start and in the terminal an error message is shown.
Paste Traceback/Error Below (if applicable)
/home/mattes/.anaconda/navigator/scripts/gmt-python/spyder.sh: Zeile 3: 6197 Speicherzugriffsfehler (Speicherabzug geschrieben) spyder > /home/mattes/.anaconda/navigator/scripts/gmt-python/spyder-out-2.txt 2> /home/mattes/.anaconda/navigator/scripts/gmt-python/spyder-err-2.txt
Speicherzugriffsfehler (Speicherabzug geschrieben) = Memory access error (memory dumped)
Versions
- Spyder version: 3.2.8
- Python version: 3.6.3
- Qt version: 5.6.2
- PyQt version: 5.6.0
- Operating System name/version: Ubuntu 16.04
Dependencies
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
Complete Guide to Python Memory Error - eduCBA
Guide to Python Memory Error. Here we discuss the introduction, working and avoiding memory errors in python respectively.
Read more >Dying, fast and slow: out-of-memory crashes in Python
When your computer's RAM fills up, the operating system will start moving chunks of memory out of RAM and on to your disk,...
Read more >Spyder does not release memory for matplotlib plots
For me, using gc.collect resolved the issue. I am using: Spyder 3.3.6, Python 3.7.6, Ipython 7.11.1. Minimal working/crashing example.
Read more >How to Solve Memory Error in Python
A memory error means that your program has run out of memory. This means that your program somehow creates too many objects. In...
Read more >How to Fix Memory Leaks in Python? - Section.io
With a lack of space, the program may be destroyed or starts working ... Python developers have tried to address memory leaks through...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you very much for the fast reply, the installation of
pyopengl
didn’t worked but when I switched to qt/pyqt 5.9 it worked! Thanks a lot for your help!Thanks for your detailed reply.
Okay, so this means that the problem has something to do with your Anaconda install. not Spyder, since its affecting other applications and thus out of our control.
Two things to try, before going ahead with the more dramatic suggestions in the Troubleshooting guide (like reinstalling Anaconda):
pyopengl
in your environment, e.g. withconda install pyopengl
while the environment is activated, and try launching Spyder againconda install pyqt=5.9
. Usually the other way around is more reliable right now, but you never know…Other than that, something in the troubleshooting guide should get you up and running again unless there is some issue with your machine.
Best of luck!