1. Komal Thareja

Komal Thareja

Forum Replies Created

Viewing 4 posts - 316 through 319 (of 319 total)
  • Author
    Posts
  • in reply to: Installing Conda Packages Inside JupyterHub Notebook #1669
    Komal Thareja
    Participant

      Post install:

      Snapshot post install

      • This reply was modified 2 years, 7 months ago by Komal Thareja.
      in reply to: Installing Conda Packages Inside JupyterHub Notebook #1667
      Komal Thareja
      Participant

        By default ca-certificates.json exists and is not corrupted. After the first install using the conda, ca-certificates and certifi package gets updated. Even though ca-certificates and certifi packages were updated, conda still seems to be looking for older versions. Thus resulting in any subsequent install failures. I am looking at ways on how to reset conda to avoid such failures. In the meanwhile, could you please share the packages you need to install for your notebook? I can see if I can add them to the default notebook container image.

        Snapshot before the install.

        ce-certificates

        • This reply was modified 2 years, 7 months ago by Komal Thareja.
        in reply to: Failed when adding two SharedNIC_ConnectX_6 to one node #748
        Komal Thareja
        Participant

          I am able to reproduce the error and found this to be a bug in the code. We would address it in the next release.

          in reply to: How to view components of active slice #520
          Komal Thareja
          Participant

            User should be able to get to the respective node components using the get_slice API:

            `

            status, topology = slice_manager.get_slice(slice_id=slice_id)

            if status == Status.OK:
            print(f”Properties: {topology.nodes[‘n1’].list_properties()}”)
            print(f”Components: {topology.nodes[‘n1’].components}”)
            print(f”Component: {topology.nodes[‘n1’].components[‘c1’]}”)
            else:
            print(f”Failed to get slice topology: {topology}”)

            `

            However, I think we have bug which is preventing the components from being listed in the output of the above snippet.

          Viewing 4 posts - 316 through 319 (of 319 total)