2016-07-27 62 views
15

在Anaconda的IPython 4.2.0和Spyder 2.3.9中,這用於工作,但現在不行。哎呀。爲什麼Spyder不遵守我的IPython配置文件?

如果我得到IPython的配置看起來是正確的,就好像它讀取文件正確:

get_ipython().config 
Out[1]: 
{'IPCompleter': {'greedy': True}, 
'IPKernelApp': {'exec_lines': ['%pylab qt']}, 
'InlineBackendConfig': {}, 
'InteractiveShell': {'xmode': 'Plain'}, 
'InteractiveShellApp': {'exec_lines': ['from __future__ import division', 
    'from __future__ import print_function', 
    'from __future__ import with_statement', 
    'from numpy import set_printoptions', 
    'set_printoptions(suppress=True, precision=4)', 
    'from sympy import init_printing', 
    'init_printing(forecolor="White")'], 
    'pylab': 'auto'}, 
'StoreMagics': {'autorestore': True}, 
'ZMQInteractiveShell': {'autocall': 0, 'banner1': ''}} 

所以它應該有未來的分工和numpy的抑制,但它實際上並不:

division 
Out[1]: _Feature((2, 2, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), 8192) 

4/5 
Out[2]: 0 

np.get_printoptions() 
Out[3]: 
{'edgeitems': 3, 
'formatter': None, 
'infstr': 'inf', 
'linewidth': 75, 
'nanstr': 'nan', 
'precision': 8, 
'suppress': False, 
'threshold': 1000} 

eps = np.finfo(float).eps; x = np.arange(4.); x**2 - (x + eps)**2 
Out[4]: 
array([ -4.93038066e-32, -4.44089210e-16, 0.00000000e+00, 
     0.00000000e+00]) 

這是它應該做的:

from __future__ import division 

division 
Out[2]: _Feature((2, 2, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0), 8192) 

4/5 
Out[3]: 0.8 

np.set_printoptions(suppress=True) 

eps = np.finfo(float).eps; x = np.arange(4.); x**2 - (x + eps)**2 
Out[5]: array([-0., -0., 0., 0.]) 

np.get_printoptions() 
Out[6]: 
{'edgeitems': 3, 
'formatter': None, 
'infstr': 'inf', 
'linewidth': 75, 
'nanstr': 'nan', 
'precision': 8, 
'suppress': True, 
'threshold': 1000} 

定期IPython的工作correctl Y(C:\Anaconda2\python.exe C:\Anaconda2\cwp.py C:\Anaconda2 "C:/Anaconda2/python.exe" "C:/Anaconda2/Scripts/ipython-script.py"

Jupyter QTConsole正常工作(C:\Anaconda2\pythonw.exe C:\Anaconda2\cwp.py C:\Anaconda2 "C:/Anaconda2/pythonw.exe" "C:/Anaconda2/Scripts/jupyter-qtconsole-script.py"

+0

它與Spyder中的[this bug](https://github.com/spyder-ide/spyder/issues/3354)有關嗎? –

+0

@PeterBrittain不,但這是一個很好的解決方法! – endolith

+0

一個可能令人討厭的答案(沒有人想重新安裝)可能是某種東西。 Anaconda 4.2充滿了bug。我參與了github發佈的問題,他們非常善於研究它們,儘管他們可能必須優先處理計劃發佈和其他人的問題,我相信。蟒蛇4.3.1現在出來了。您可能想要嘗試升級並查看問題是否得到解決。您也可以單擊鏈接到spyder bug,然後按照項目的步驟發佈您的問題以尋求幫助。 – TMWP

回答

1

林不知道是什麼問題,或者 我有同樣的問題

,但是當我卸載了蟒蛇的一切,包括我的固定它蟒蛇位 授予我救的設置和配置文件之類的東西

並重新安裝

。希望幫助,如果它的一個選項

相關問題