trying to get running...
See original GitHub issueHi. I am trying to get this running on Windows 10 using Visual Studio Code.
If cd into the repo and run a command like:
eynollah -i C:/Users/Scott/Desktop/Python2/Kpages/Pages/076v.jpg -o C:/Users/Scott/Desktop/Python2/Kpages -m C:/Users/Scott/Desktop/Python2/eynollah/models_eynollah -si C:/Users/Scott/Desktop/Python2/Kpages
it doesn’t appear to run. A new command prompt comes up after a couple of seconds – but no output and no error message.
Any guidance would be appreciated.
Issue Analytics
- State:
- Created 3 years ago
- Comments:53 (36 by maintainers)
Top Results From Across the Web
How to Start Running - Well Guides - The New York Times
Starting a new running habit doesn't have to be hard. ... Instead, try on four or five running shoes, jog around the store...
Read more >How to start running today: a beginner's guide - Runner's World
From a pre-run walk plan to a run-walk plan, here's how to get started. ... Whether you want to start getting active or...
Read more >Running for Beginners: How to Get Started - Verywell Fit
Getting started with running can feel overwhelming to a beginner runner. Here are some of the basics of running to help you get...
Read more >How to Start (or Get Back Into) Running - Men's Journal
Figure out why you're running · Don't get ahead of yourself · Build a base · One-month beginner's running schedule · Want more?...
Read more >How To Start Running: A Guide for Beginners - Fleet Feet
Getting started is the hardest part. If you want to know how to start running, we compiled all our best advice here to...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
🎉 good to hear it’s working for you now and thanks for documenting the steps you needed. Good to close an issue with an actual solution.
About
make models
, you don’t need to go through make just for that, all that target does isi.e. download the tarball and extract it, nothing fancy.
Once the OCR-D bindings are in place and https://github.com/OCR-D/core/pull/668 is merged, you will be able to download the models with
ocrd resmgr download ocrd-eynollah '*'
.Thanks to everyone weighing in with input on this.
I made a fresh conda environment (Windows 10 OS) and took another go at it. I needed to install pip to install eynollah. But after some fails, I figured out that pip installed python 3.9. So I installed python 3.6.
pip install .
worked after that – but not until I manually made the changes referenced above (#18).I used msys64 + mingw64 to install the models successfully.
Running
eynollah -i C:/Users/Scott/Desktop/Python2/K/eyn_test/F073r.jpg -o C:/Users/Scott/Desktop/Python2/K/eyn_test/results -m C:/users/scott/desktop/python2/eynollah/models_eynollah -si C:/users/scott/desktop/python2/K/eyn_test/results
I got the followingAfter some dead ends, I googled the error line plus “shapely,” and found a suggestion at another repo to simply
conda install -c conda-forge shapely
I no longer got that specific error. Andeynollah --help
works. (Yay!)However, running the same command above, now I get:
I’ve triple-checked my paths, and they’re fine. And I’ve poked around to try to understand where the ValueError is coming from. But yet to no avail. Any suggestions?