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
Please excuse the lack of expertise. I have been trying to get Laika working and ran in to an error while going through the walkthrough. Details of my system are below. Digging down into what is going on, the issue is the function https_download_file which is failing. Specifically, the setting
This results in the error RuntimeError: No orbit data found on either servers from get_orbit_data. The fix for me was to change the setting to
crl.setopt(crl.SSL_CIPHER_LIST, 'DEFAULT')
I guess this is due to the version of openssl that I have installed, and I have no idea what implications the above change has, but nonetheless thought it was a good idea to report the issue and what got it working.
Hardware: MacBook Pro with M1 chip
OS: MacOS 11.6
Python: 3.9.7 (installed with pyenv)
OpenSSL: 2.8.3 (installed with homebrew)
PycURL: 7.44.1 (compiled against the above library)
Happy to dig further into my setup to find the issue if it is helpful. Otherwise hopefully this helps if anyone else has the same issue.
The text was updated successfully, but these errors were encountered:
Please excuse the lack of expertise. I have been trying to get Laika working and ran in to an error while going through the walkthrough. Details of my system are below. Digging down into what is going on, the issue is the function
https_download_file
which is failing. Specifically, the settingcrl.setopt(crl.SSL_CIPHER_LIST, 'DEFAULT@SECLEVEL=1')
causes
crl.perform()
to fail with the errorpycurl.error: (59, 'failed setting cipher list: DEFAULT@SECLEVEL=1')
This results in the error
RuntimeError: No orbit data found on either servers
fromget_orbit_data
. The fix for me was to change the setting tocrl.setopt(crl.SSL_CIPHER_LIST, 'DEFAULT')
I guess this is due to the version of openssl that I have installed, and I have no idea what implications the above change has, but nonetheless thought it was a good idea to report the issue and what got it working.
Hardware: MacBook Pro with M1 chip
OS: MacOS 11.6
Python: 3.9.7 (installed with pyenv)
OpenSSL: 2.8.3 (installed with homebrew)
PycURL: 7.44.1 (compiled against the above library)
Happy to dig further into my setup to find the issue if it is helpful. Otherwise hopefully this helps if anyone else has the same issue.
The text was updated successfully, but these errors were encountered: