-
Notifications
You must be signed in to change notification settings - Fork 38
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
Failing to start with python 3.10 #52
Comments
Sounds like you've solved it. I really need to get EasyABC going again but I'm not a computer-techie and don't know how to go about what you have written. Could you give simple step-by-step instructions? Thanks. |
@raychandler If you are able run it with an earlier version of python that would be ideal as there are some other errors related to 3.10 that I haven't really looked into. How you do that will largely depend on your current setup so I'm not sure I can provide a step by step. I saw you made a comment on source forge and you are using Manjaro Linux, maybe see if you can get the package maintainer to update the package to use an earlier version of python https://aur.archlinux.org/packages/easyabc/ If you don't want to wait you can try cloning this repository and running the application in a virtual environment using an earlier version of python. https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/#installing-from-version-control-systems |
Since I like to use EasyABC, but it fails to run on newest Linux Mint / Ubuntu releases due to that pyparsing library issues I stick to the old versions of OS where it does work. Not ideal, hope it will get resolved sometime soon. |
|
This hacked up version in a fork works for me on Ubuntu 22.04.2 LTS |
@robertmuth, thanks for this! |
Even when replacing pyparsing.py I get an error similar to https://stackoverflow.com/questions/37502112/typeerror-gridsizer-arguments-did-not-match-any-overloaded-call which makes the settings dialogs to squash all content into a single line. It doesn't crash things but settings aren't usable. |
I just changed my OS from Linux Mint to the latest version of MX Linux and
managed somehow to install EasyABC stock version without issues (just had
to reference soundfont location in options)
…On Sun, Jun 11, 2023, 15:12 Mauricio Scheffer ***@***.***> wrote:
Even when replacing pyparsing.py I get an error similar to
https://stackoverflow.com/questions/37502112/typeerror-gridsizer-arguments-did-not-match-any-overloaded-call
which makes the settings dialogs to squash all content into a single line.
It doesn't crash things but settings aren't usable.
—
Reply to this email directly, view it on GitHub
<#52 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AD6AZEFGCTO7K6SXUGVNG5TXKYKALANCNFSM5LGI5NEQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
It looks like some deprecated collections classes were removed and are now only accessible in the abc sub module with python 3.10
I was able to get it working by replacing pyparsing.py with https://github.com/pyparsing/pyparsing/blob/master/pyparsing_archive.py but it might make sense more sense to add https://pypi.org/project/pyparsing/ to the requirements.txt instead.
The text was updated successfully, but these errors were encountered: