-
Notifications
You must be signed in to change notification settings - Fork 69
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
Expand Scribe-Data paths to allow for Windows commands #125
Comments
@mhmohona, you'd said you'd be interested in this one? :) |
Yes. |
Assigned, @mhmohona! Let me know if there's anything we can do to assist :) |
Could assist too if you don't mind |
So the first problem I faced while installing Scribe-data was installing PyICU. It has different installation process for Windows - https://github.com/ilius/pyglossary/blob/master/doc/pyicu.md#installation-on-windows |
@mhmohona have you tried the process? I can't load PyICU-2.9-cp311-cp311-win_amd64.whl into the command prompt |
|
We need to install a certain pkg-config file using chocolatey |
Big thing to note here is that the PyICU behavior is known to be very weird... This is documented in #33, and I'd say that the install for PyICU for windows could be included in that issue. For this one, let's focus on the baseline paths for updating the data :) CC @wkyoshida |
@mhmohona please where are you with this issue |
Hey @Jk40git, I actually havent started working on this issue after my last comment. |
All right @mhmohona. I was able to access the path locally though. But my problem was the marisa-trie build wheels. Thanks for the reply |
This'll be solved over the weekend odds are :) We're discussing how to change the dependencies in #61, with the likely change being that we'll remove the ones that are causing all these issues. |
Now in windows I can install Scribe data by following commands here but when trying to run a script, getting error like this - This issue seems it will take some time. Thus I want to work on it later. |
Thanks for looking into this, @mhmohona! Let's discuss later when we'd like to prioritize this :) |
@mhmohona I think scribe_data wasn't successfully installed can you do |
Specifically what we're looking for is if a person on Windows does the following: pip install .
scribe-data q -all If the data starts being downloaded, then that's the first hint that things are working properly :) |
Okay sure I was able to access it before the recent changes. But I will have a look at it again |
That's the top of the output where you copied both commands in one, right @Jk40git? Now that you have it installed, and please check that you've git pulled, can you show what the output of |
Yes. the second output |
Hmmmm, but that's weird as it should have been covered by |
Ok, well that's not good 😅 Can you tell us if you have the |
Yes please I have the cli directory |
Thank for the conversation here, @Jk40git! Just checking things with the questions, hope you understand :) This is definitely something need need to be looking into then, as it seems that the CLI isn't being installed for you. @mhmohona, it'd be great to get your feedback as I believe it's working on your end, but maybe I'm misremembering your operating system as Windows, or there could be something else going on 🤔 @Jk40git, specifically this line in setup.py is the one that is setting up the CLI on install. It's at least worked for @mhmohona and I 🤔 I'm wondering what some potential fixes could be?? The line in question is: "console_scripts": [
"scribe-data=scribe_data.cli.main:main",
], Maybe something that's going on is that we have a prior version that's installed and the new one isn't being picked up? So maybe @Jk40git you could try If this does work for you, then something we'd need to make sure of is that the old version of things is removed when a person wants to install the new version :) Generally I think that this comment and the thread it's in should have most of the answers we're looking for. Things to try:
# Solution I suggested above
pip uninstall scribe-data
pip install .
# Should behave as the above
pip install --force-reinstall scribe-data
python setup.py egg_info @Jk40git, can you try the above and let us know if If one of these works, we should definitely add a quick line about them into the readme and contributing guide! |
Ah this is at least some progress :) What command fixed it for you, @Jk40git? You could do a PR to add it to the readme and contributing markdown files in the installation sections? If it's the first commands above, then maybe we can put the second as that's the first combined, so adding in the following:
The above would help people after we get the next release out :) Feel free to send something along that you think would help people, @Jk40git! |
And what I'm seeing above is that specifically the paths are not being computed correctly for Windows 🤔 So at one point in |
okay sure. I did the steps above pip uninstall scribe-data
pip install . python setup.py egg_info |
At some point pip uninstall scribe-data
pip install . works fine But I need to comment out PyICU in the requirement file |
Ok, ya that PyICU stuff will need to be figured out later ... Will be great when we have Dockerized deployments up that just package the whole thing! Let's keep this documentation in mind! @Jk40git, do you want to check and see where we have |
Can you give more explanation or details. What am I supposed to change the |
You'd use |
So I have to import path from pathlib right ? |
Yes that'd be the way. You can check how pathlib has already been used :) |
hello.. @andrewtavis |
@andrewtavis, please assign @axif0 on this issue. I dont have any problem. |
I had some major rewrites to do so that we could get the translation process working, so I went ahead and did a ton of changes for this in aef7e5a. @axif0, do you want to try out some of the functionality on your machine and also check the code for cases where the paths are still hardcoded with |
At this point we're ready for people to actively start testing the new paths on Windows 😊 Can folks pull the current changes, install the current version with |
b82bb67 should close this up mostly :) Closing now and we can test all of this with the rest of the functionality before the v4.0 release 😊 Thanks all! |
Terms
Description
Something that would be great to add to Scribe-Data is some more documentation for Windows commands beneath their Linux/Mac counterparts in the readme and contributing guide as well as converting some of the path functionality of the codebase over to allow for Windows paths to be accessed.
sys.path
#122 :)Contribution
Happy to support on this as needed! 😊
The text was updated successfully, but these errors were encountered: