Hi!
I am trying to make call with the nds2 client from Google colab.
So far I failed because the nds2 module does not appear to be
installed automatically by pip. The following lines:
! pip install -q ‘gwpy==3.0.4’
from gwpy.timeseries import TimeSeries
data = TimeSeries.fetch(‘L1:ISI-GND_STS_ITMY_Z_BLRMS_30M_100M’, start=1263229218, end=1263229228, host=‘losc-nds.ligo.org’)
results in the following error:
→ 308 import nds2
309 # pylint: disable=no-member
310ModuleNotFoundError: No module named ‘nds2’
The nds2 client packages do not seem to be available with pip:
!pip install nds2-client python-nds2-client
Looking in indexes: Simple index, https://us-python.pkg.dev/colab-wheels/public/simple/
ERROR: Could not find a version that satisfies the requirement nds2-client (from versions: none)
ERROR: No matching distribution found for nds2-client
Any hint?
Eric