MindSpore Insight Installation and Uninstallation

View Source On Gitee

System Environment Information Confirmation

Installation Methods

You can install MindSpore Insight either by pip or by source code or by Docker.

Installation by pip

Install from PyPI:

pip install mindinsight

Install with customized version:

pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/{version}/MindInsight/any/mindinsight-{version}-py3-none-any.whl --trusted-host ms-release.obs.cn-north-4.myhuaweicloud.com -i https://pypi.tuna.tsinghua.edu.cn/simple
  • When the network is connected, dependency items are automatically downloaded during .whl package installation. (For details about other dependency items, see requirements.txt). In other cases, you need to manually install dependency items.

  • {version} denotes the version of MindSpore Insight. For example, when you are downloading MindSpore Insight 1.3.0, {version} should be 1.3.0.

  • MindSpore Insight supports only Linux distro with x86 architecture 64-bit or ARM architecture 64-bit.

Installation by Source Code

The following dependencies need to be installed:

  • Confirm that node.js 10.19.0 or later, 16 or earlier is installed.

  • Confirm that wheel 0.32.0 or later is installed.

Downloading Source Code from Gitee

git clone https://gitee.com/mindspore/mindinsight.git

Compiling MindSpore Insight

You can choose any of the following installation methods:

  1. Run the following command in the root directory of the source code:

    cd mindinsight
    pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
    python setup.py install
    
  2. Build the whl package for installation.

    Enter the root directory of the source code, first execute the MindSpore Insight compilation script in the build directory, and then execute the command to install the whl package generated in the output directory.

    cd mindinsight
    bash build/build.sh
    pip install output/mindinsight-{version}-py3-none-any.whl -i https://pypi.tuna.tsinghua.edu.cn/simple
    

Installation by Docker

The MindSpore image contains the MindSpore Insight function. For details, see the Installation Guide on the official website.

Installation Verification

Execute the following command:

mindinsight start

If it prompts the following information, the installation is successful:

Web address: http://127.0.0.1:8080
service start state: success

Uninstallation Methods

pip uninstall mindinsight