提交 537b24f4 authored 作者: Liang-Chi Hsieh's avatar Liang-Chi Hsieh

Check home_dir writing permission and assign temporary directory.

上级 54186290
......@@ -236,7 +236,10 @@ def get_home_dir():
if sys.platform == 'win32' and os.getenv('LOCALAPPDATA') is not None:
default_base_compiledir = os.path.join(os.getenv('LOCALAPPDATA'), 'Theano')
else:
default_base_compiledir = os.path.join(get_home_dir(), '.theano')
home_dir = get_home_dir()
if not os.access(home_dir, os.W_OK):
home_dir = '/tmp'
default_base_compiledir = os.path.join(home_dir, '.theano')
AddConfigVar(
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论