-
Notifications
You must be signed in to change notification settings - Fork 9
Windows support #1
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
Comments
The docs say though:
So if that's the case then there's not much that needs doing because getting access to the |
httppipe now works on windows, but not via appveyor (but that's just because of issues with linux vs windows images from the look of it). It's very much a stop-gap, but hopefully all the work can be isolated into the httppipe package now |
Windows 7 via docker toolbox does not use named pipes but uses docker machine. Unfortunately it looks like there are issues with communication over the winssl curl driver, at least on @OJWatson's machine |
Travis now supports windows:
I can try to find some time to try it out, but before that: @richfitz What's the current state? Any updates not mentioned here? |
Current state is just
When I've asked around, I've not yet found anyone really doing much with docker on windows. Perhaps with win10 that will change more |
I'll represent as a Windows 10 user running Docker! 😄 I've not yet been able to get Working code on my system: reticulate::py_run_string("import sys")
reticulate::py_eval("sys.path")
reticulate::py_run_string("sys.path.insert(1, 'C:/users/davidski/Documents/R/win-library/3.5/stevedore/py')")
reticulate::py_run_string('import httppipe') |
Could you add this as a new issue please @davidski, and can you please show the output of |
Didn't mean to hijack the thread! 😄 I wanted to voice support for Windows support, where possible, and offer myself as a test subject where/if needed. I was able to get |
No worries 😁 @weshinsley has plans for native named pipe support - hopefully we'll make some progress on that this year |
Getting windows support working probably requires implementing the contents of
R/http.R
to work with named pipes (likely this file will split into a transport layer - simple in the tcp case, fairly simple for unix socket and possibly complex for named pipes?). It's possible that the?fifo
function can do most of what we needThe text was updated successfully, but these errors were encountered: