-
Notifications
You must be signed in to change notification settings - Fork 381
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
on windows ipython is incompatible with cygwin #1511
Comments
the failure: #1500 |
When trying to launch (virtualenv, not Anaconda) iPython using cygwin64, getting file-not-found error (the path of the file is mixing Windows-backslash style with Linux forward-slash style):
This is my beaker.pref.json file:
|
we don't support cygwin. i don't think there's a problem with mixing forward and backward slashes, they both work. it looks like your virtualenv is simply missing ipython. beaker might work if you add its python dependencies, but i have never tried with cygwin. |
If you install cygwin and then anaconda, the python that ends up first in your path is from cygwin.
this is a problem even if you use beaker.pref.json to specify a path, because the path you put in there is to ipython, which anaconda puts in C:\Anaconda\Scripts. But the python executable is in C:\Anaconda. the anaconda installer puts both of these directories into the path, but our mechanism only allows one directory.
there are a couple of ways of dealing with this:
The text was updated successfully, but these errors were encountered: