Python.exe 使用 Cygwin 在 Windows 上的 Miniconda2 中挂起

Python.exe hangs in Miniconda2 on Windows using Cygwin

我在 Windows 上安装了 Miniconda2,并且正在使用 Cygwin。我找到了包含 conda.exeMiniconda2/Scripts 文件夹,并且能够成功 conda install 包。

但是,在遵循 this post 并使用 export 将我的路径重定向到 Python.exe 之后(which python 确实给了我正确的 Python.exe),我什至不能 运行 Python 了。它只是挂起。

但是,如果我使用 Windows 文件资源管理器找到文件并双击 Python.exe 文件,它会 运行 Python 并成功找到导入的包.有什么想法吗?

为了让 Miniconda2 在 Windows 中工作,我将以下内容添加到我的 .profile

export PATH="~/Miniconda2/Scripts:$PATH"
export PATH="~/Miniconda2/:$PATH"

最后,我在 .bashrc

中添加了以下别名
alias python="python -i"