2016-07-06 39 views
0

如果我開始IPython的一個只讀文件系統上它總是與崩潰:IPython中的只讀文件系統:「沒有可用的臨時目錄中找到」

File "/usr/lib/python2.7/tempfile.py", line 217, in _get_default_tempdir 
    ("No usable temporary directory found in %s" % dirlist)) 
IOError: [Errno 2] No usable temporary directory found in ['/tmp', '/var/tmp', 

對於一些原因,我不能安裝他們寫的,所以我的問題:

是否可以在只讀模式下啓動IPython?

在此先感謝

preareac

回答

0

我看ipython配置文件,看是否有關於自動書寫,以及如何將其關閉任何東西。

它所做的一件事,默認情況下是編寫一個history.sqlite文件。

設置:

c.HistoryManager.enabled = False 

可能把它們關掉。但是那需要編輯配置文件。但是可以在命令行中像這樣更改配置值。我沒有嘗試過。

ipython --HistoryManager.enabled=False 

可能會伎倆。

看看大的幫助,看看有沒有什麼看起來可能會有所幫助。

ipython --help-all 
相關問題