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
As far as I can tell, nbconvert cannot be built on non-internet connected systems, such as in an automated build system on an airgapped node. In hatch_build.py, it tries to download each css file (on at least one system I'm working on, the urlopen(url).read() function hangs indefinitely) before checking for an existing copy. Would it be possible to check for the destination file before trying to download it? In my use case (installing through Spack), it's fine to stage the files in advance so they're available at install time.
The text was updated successfully, but these errors were encountered:
As far as I can tell, nbconvert cannot be built on non-internet connected systems, such as in an automated build system on an airgapped node. In hatch_build.py, it tries to download each css file (on at least one system I'm working on, the
urlopen(url).read()
function hangs indefinitely) before checking for an existing copy. Would it be possible to check for the destination file before trying to download it? In my use case (installing through Spack), it's fine to stage the files in advance so they're available at install time.The text was updated successfully, but these errors were encountered: