spyder

Spyder anaconda crashes on Linux with segmentation fault

社会主义新天地 提交于 2019-12-01 07:19:40
问题 I just installed Anaconda on Linux. When trying to open spyder (either from navigator or terminal), it does not work. I get the following error when I try to open it in terminal: Segmentation fault (core dumped) I updated Conda completely but can't solve the problem. I am using Conda version 4.5.5 and Ubuntu 18.04. Any idea? 回答1: ( Spyder maintainer here ) This problem is caused by faulty graphical card drivers and there are two ways to fix it: Update to Spyder 3.3 or higher. Install pyopengl

Anaconda 3 Spyder appears to be causing internet outages on Windows 10

半腔热情 提交于 2019-12-01 06:40:48
问题 I have a repeatable problem with my laptop (an HP G4 250 that came with windows 10). I can be happily on the Internet, but opening Spyder causes the Internet to immediately die. Now, the system does something rather unusual. I am not disconnected from the router, and the wireless icon still says I am connected and have Internet access. But streams crash, webpages refuse to load and say there is no internet connection, and I can;t even access my router's config page. Closing Spyder fixes the

Can no Longer open Spyder IDE for Python Programming

本小妞迷上赌 提交于 2019-12-01 06:05:12
问题 This question was migrated from Software Engineering Stack Exchange because it can be answered on Stack Overflow. Migrated 3 years ago . I installed Python 3.4 on my Windows 7 laptop several months ago as part of Anaconda (https://www.continuum.io/downloads). My installation included the Spyder IDE, and I have successfully been using Spyder for Python programming. However, since yesterday, I have been unable to open Spyder. I typically open Spyder via the Start Menu, but now, when I try to

python spyder conda install failure

孤街浪徒 提交于 2019-12-01 06:05:07
问题 I am new to Python, now I am using Anaconda Spyder as my main Python distribution. I am learning how to use conda to install/update packages. When I read relevant books and searched online, it seemed that All I need to do is to type "conda install " or type "conda update ". When I typed so in my spyder console, I found error message as follows. Where am I wrong here? Thanks for help. Someone suggested me to run it in cmd not in Spyder. Here is my output when I run it in cmd. The update of my

Spyder: How to edit a python script locally and execute it on a remote kernel?

白昼怎懂夜的黑 提交于 2019-12-01 03:50:29
i am using Spyder 2.3.1 under Windows 7 and have a running iPython 2.3 Kernel on a Rasperry Pi RASPBIAN Linux OS. I can connect to an external kernel, using a .json file and this tutorial: Remote ipython console But what now? If I "run" a script (F5), then the kernel tries to exectue the script like: %run "C:\test.py" ERROR: File u'C:\\test.py' not found. This comes back with an error, ofc, because the script lays on my machine under c: and not on the remote machine/raspberry pi. How to I tell Spyder to somehow copy first the script to the remote machine and execute it there? If I check the

Python kernel dies for second run of PyQt5 GUI

落花浮王杯 提交于 2019-12-01 03:42:48
Using Spyder in Python 3.5.2 |Anaconda 4.2.0 (64-bit) Windows package. qt: 5.6.0 For first run, GUI window opens as expected For 2nd run, nothing opens, and receiving Kernel died, restarting log message. gui1.py: import sys from PyQt5.QtWidgets import QApplication, QWidget app = QApplication(sys.argv) w = QWidget() w.resize(250,150) w.show() #sys.exit(app.exec_()) app.exec_() IPhython log: runfile('F:/work/ws_python/TestProj1/gui1/gui1.py', wdir='F:/work/ws_python/TestProj1/gui1') runfile('F:/work/ws_python/TestProj1/gui1/gui1.py', wdir='F:/work/ws_python/TestProj1/gui1') Kernel died,

Handling folds in Spyder

霸气de小男生 提交于 2019-12-01 03:26:39
I am coming from a VScode background , and for my recent project (on Deep Learning) I am having to manage huge code files in Spyder (Version 3), and I am not seeing any option of code folding? I am not willing to switch to another IDE , as Spyder is very productive for my project. Please suggest any hack to do it , if it is not there in the Spyder codebase. ( Spyder maintainer here ) You can install the first beta of Spyder 4 to get code folding. If you use Anaconda, you need to use the following command: conda install -c spyder-ide spyder=4.0.0b1 or if you use pip, then you need to run pip

A module is working in Anaconda prompt, but not in Spyder

纵然是瞬间 提交于 2019-12-01 02:26:55
问题 I have been fighting with this problem for hours now, and it's a kind of complicated one. I'm on windows 7, Python 2.7, Spyder 3.2.6 I tried to install OSMNX through cygwin , however I faced many issues. Finally managed to install it through windows cmd. Through the anaconda prompt , I could import the osmnx with no error. However, I'm trying to import it in spyder, but I keep receiving: Traceback (most recent call last): File "<ipython-input-2-2b99ab66aebb>", line 1, in <module> import osmnx

Module installed on Conda, but gives error on importing in Spyder (Python IDE)

强颜欢笑 提交于 2019-12-01 01:52:47
I recently installed pybedtools in my Conda environment, using the command they mentioned - conda install -c bioconda pybedtools But then when I activated spyder in this environment, and tried to run import pybedtools it gave me the error- Modulenotfounderror: no module named 'pybedtools' I went back and tried to install using the module using pip too ( pip install pybedtools ) but it said that I already had it - Requirement already satisfied: pybedtools in /anaconda3/envs/env1/lib/python3.5/site-packages Requirement already satisfied: six in ./anaconda3/envs/env1/lib/python3.5/site-packages

Handling folds in Spyder

萝らか妹 提交于 2019-12-01 01:02:57
问题 I am coming from a VScode background , and for my recent project (on Deep Learning) I am having to manage huge code files in Spyder (Version 3), and I am not seeing any option of code folding? I am not willing to switch to another IDE , as Spyder is very productive for my project. Please suggest any hack to do it , if it is not there in the Spyder codebase. 回答1: ( Spyder maintainer here ) You can install the first beta of Spyder 4 to get code folding. If you use Anaconda, you need to use the