containerJobData.ts 335 Bytes
Newer Older
liuzhe-lz's avatar
liuzhe-lz committed
1
2
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
3
4
5

'use strict';

6
export const CONTAINER_INSTALL_NNI_SHELL_FORMAT: string =
7
8
9
10
11
12
`#!/bin/bash
if python3 -c 'import nni' > /dev/null 2>&1; then
  # nni module is already installed, skip
  return
else
  # Install nni
13
  python3 -m pip install --user --upgrade nni
14
fi`;