You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the problem is caused by a conflict between mockssh and paramiko.
by default, we don't have MockSSH installed. (we don't have it on requirements.txt).
after installing MockSSH this error occurred:
<frozen importlib._bootstrap>:228: in _call_with_frames_removed
???
sqlalchemy_media/__init__.py:2: in <module>
from .attachments import Attachment, AttachmentCollection, AttachmentList, \
sqlalchemy_media/attachments.py:13: in <module>
from .stores import StoreManager, Store
sqlalchemy_media/stores/__init__.py:12: in <module>
from .os2 import OS2Store
sqlalchemy_media/stores/os2.py:18: in <module>
from sqlalchemy_media.optionals import ensure_os2auth
sqlalchemy_media/optionals.py:56: in <module>
import paramiko
/home/ae/.local/lib/python3.9/site-packages/paramiko/__init__.py:30: in <module>
from paramiko.transport import SecurityOptions, Transport
/home/ae/.local/lib/python3.9/site-packages/paramiko/transport.py:66: in <module>
from paramiko.sftp_client import SFTPClient
/home/ae/.local/lib/python3.9/site-packages/paramiko/sftp_client.py:41: in <module>
from paramiko.sftp_file import SFTPFile
E File "/home/ae/.local/lib/python3.9/site-packages/paramiko/sftp_file.py", line 66
E self._close(async=True)
E ^
E SyntaxError: invalid syntax
python
python3 --version
Python 3.9.7
OS
uname -a
Linux skrilla 5.13.0-27-generic #29-Ubuntu SMP Wed Jan 12 17:36:47 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
The text was updated successfully, but these errors were encountered:
3.7.13 couldnt find the package six. this may be due to my environment or system
seemed to work on python 3.8.6 (and by this i mean didnt fail during the installation of dependencies), the example code in the README still seems to have issues originating from the PIL library, presumably things have changed in newer versions
problem
I think the problem is caused by a conflict between
mockssh
andparamiko
.by default, we don't have MockSSH installed. (we don't have it on
requirements.txt
).after installing MockSSH this error occurred:
python
OS
The text was updated successfully, but these errors were encountered: