PyFilesystem / pyfilesystem

Python filesystem abstraction layer
http://pyfilesystem.org/
BSD 3-Clause "New" or "Revised" License
287 stars 63 forks source link

Segmentation fault: 11 with SFTP #265

Closed chris-hailstorm closed 7 years ago

chris-hailstorm commented 7 years ago

Trying a fairly vanilla command line:

$ fsls sftp://name:passwowrd@sftp.whatever.com
Segmentation fault: 11

Has anyone else seen this? I'm using Python 2.7.12 on OSX 10.9.5

This kind of error is not unheard of with Paramiko and / or the cryptography module but can be pretty hard to resolve. I'm hoping someone else has seen this before.

chris-hailstorm commented 7 years ago

Resolved by reinstalling cryptography in a non-obvious way:

    pip uninstall cryptography
    LDFLAGS="-L/usr/local/opt/openssl/lib" pip install cryptography --no-use-wheel

See:

lurch commented 7 years ago

Glad to hear you managed to solve your problem. As this isn't directly related to pyfilesystem, can this issue be closed?