-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Abort trap: 6 #7254
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
Comments
Hi @Tdickson3! It looks like this error message impacts several different Python-based projects:
So it's probably an issue with Python or a library and not pip specifically. I would check with whatever Python distributor you're using (homebrew?). Some information here may also be useful. I hope that helps! This doesn't appear to be a pip problem so I'll close this eagerly, but please let us know if you have any other evidence that point to pip being at fault. Thanks! |
I had the same issue and was able to resolve following the steps from this thread: https://forums.developer.apple.com/thread/119429 For me, this issue was related to the libssl.1.0.0.dylib and libcrypto.1.0.0.dylib. The python.log file provided by the OP references libcrypto dylib as well. from python.log file: for anyone who finds this, you can view your own python log files at ~/Library/Logs/DiagnosticReports. someone else might be able to explain this further, but in short, the error seems to be related to Catalina not allowing un-versioned dylibs to be called. The solution is to link the un-versioned dylib files to ones with a version. Below are steps taken from the prevailing answer in the above link, and I can confirm that they worked for me. It doesn't seem like existing virtual environments will be fixed with the below, but after the fix you can create new virtual environments and they should behave as expected. Steps to Fix
|
@Esolberg2 Thank you for your help! |
This is related to pyopenssl using old dependencies. You can fix it by removing the cryptography package, then upgrading cryptography to version 2.8. |
You can also add to your
|
When I tried to use
pip3
to view the installed modules, but returnedAbort trap: 6
,Here are some screenshots and logs.I want to know what caused this., thank youpython.log
The text was updated successfully, but these errors were encountered: