-
Notifications
You must be signed in to change notification settings - Fork 1k
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 via pip fails needing pathlib2 #474
Comments
Same issue here, Arch linux. |
Same here yesterday. It seems pathlib2 is a dependency of wxpython. Even after In the end I resolved it by installing
You can also install Gooey with conda, but currently you get the |
I fixed it by installing with my distro's package manager: |
Related wxPython issue wxWidgets/Phoenix#1251 |
This is fixed in |
Expected: easy installation via
pip3 install gooey
:)Problem:
pip3 install gooey
fails.Description: It prints
File "build.py", line 30, in <module> import pathlib2
…ModuleNotFoundError: No module named 'pathlib2'
,I wonder, since pathlib2 is a python2 module, whereas I installed this for python 3 (which, under ubuntu, is aliased to
python3
andpip3
). Maybe it’s this wxPythons fault…System:
Me: basic python knowledge, in case I should look anything up.
related: #243 ("Add install workaround for (ubuntu, conda) installation ")
The text was updated successfully, but these errors were encountered: