-
Notifications
You must be signed in to change notification settings - Fork 68
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
Fails to run on windows, can't run yarn
commands
#222
Comments
Can you show me the output when you run
or
? I'm using click version
Thanks for the report by the way! |
Ok, I found my mistake, as I had not read the documentation carefully and just tried to run the code off Jupyter Notebook without making the required changes. This time I made recommended changes like so:
and ran it and did not get any errors. But when I tried to reach the local host ny using:
I found this:
I also tried to run the example off command line as well after making sure that I had the correct version of click installed and encountered the below error:
|
Can you check if you have yarn installed? Bowtie needs to be able to run https://yarnpkg.com/en/docs/install#windows Maybe I can improve the error messaging here in case people don't have yarn installed. |
|
@naveedulislam Hmm, maybe I was mistaken. Can you run It might be worth noting that I don't have access to a windows machine so I've never tried it myself. As far as I know I don't think bowtie is doing anything that would prohibit usage on windows. |
Since you did not prescribe what I should run for yarn from the command line so I assume that your query for me was to see whether yarn could be run for any command on a windows computer?
Then I ran the command:
The rsult:
|
I wonder if there is some weird pathing going on. You can run
Thank you for trudging through this with me. I wish we had a faster way to debug this. I haven't heard experiences from Windows users before, maybe this tells me that setting up appveyor is worth it. |
I tried and below is the result:
|
yarn
commands
Okay problem is confirmed! If we can solve this, then I think everything else will be resolved. I'll think about for this a bit. In the meantime if anyone using Windows reads this, please chime in if you know how to solve this! |
@naveedulislam Can you try some of the "solutions" here. For example:
|
I show the below message:
I even tried reinstalling everything and then tried the above command again but no change. Also tried several differnt options provided in the refrerred post and others but no encouraging output. |
if notebook is None:
return Popen(command,shell=True, cwd=self._build_dir).wait()
cmd = Popen(command,shell=True, cwd=self._build_dir, stdout=PIPE, stderr=STDOUT) I was able to overcome the issue with subprocess.Popen error by modifying the above line of codes in bowtie _app.py |
When I run this example code:
I receive an error message:
The text was updated successfully, but these errors were encountered: