Skip to content
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

Installation sur OS X (catalina) #81

Open
taniki opened this issue Feb 29, 2020 · 0 comments
Open

Installation sur OS X (catalina) #81

taniki opened this issue Feb 29, 2020 · 0 comments

Comments

@taniki
Copy link

taniki commented Feb 29, 2020

J'ai installé legi.py sur un mac et il a fallu rusé un peu. En attendant, une PR de mise à jour du README voici les contournements.

hunspell

brew install hunspell installe une version qui n'est pas compatible en l'état avec pyhunspell. L'auteur de cette librairie n'a pas l'air très préoccupé par la situation : pyhunspell/pyhunspell#67 (comment).

Pour ma part, je l'ai installé avec python setup.py install après avoir modifié setup.py de cette façon :

diff --git a/setup.py b/setup.py
index 80a4e55..84dad87 100755
--- a/setup.py
+++ b/setup.py
@@ -35,8 +35,8 @@ if platform.system() == "Windows":
     main_module_kwargs['extra_compile_args'] = ['/MT']
 elif platform.system() == "Darwin":
     main_module_kwargs['define_macros'] = [('_LINUX', None)]
-    main_module_kwargs['libraries'] = ['hunspell']
-    main_module_kwargs['include_dirs'] = '/usr/local/Cellar/hunspell/1.6.2/include/hunspell',
+    main_module_kwargs['libraries'] = ['hunspell-1.7']
+    main_module_kwargs['include_dirs'] = '/usr/local/Cellar/hunspell/1.7.0_2/include/hunspell',
     main_module_kwargs['extra_compile_args'] = ['-Wall']
 else:
     main_module_kwargs['define_macros'] = [('_LINUX', None)]

Peut être que cela fonctionnerait aussi en installant la version 1.6.2 via l'historique de brew.

Je n'ai pas regardé comme installer simplement le dico fr_FR. Il y a pas de paquet prévu à cette effet.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant