"cacheflow/master/server.py" did not exist on "3e9f991d6acd7efd90f04f1f530b837a40c93442"
InstallNNI_Ubuntu.md 881 Bytes
Newer Older
Scarlett Li's avatar
Scarlett Li committed
1
2
3
4
5
6
7
8
9
10
**Install NNI on Ubuntu**
===

## **Installation**
* __Dependencies__

      python >= 3.5
      git
      wget

Gems Guo's avatar
Gems Guo committed
11
    python pip should also be correctly installed. You could use "python3 -m pip -v" to check in Linux.
Scarlett Li's avatar
Scarlett Li committed
12
13
14

* __Install NNI through pip__

Gems Guo's avatar
Gems Guo committed
15
      python3 -m pip install --user --upgrade nni
Scarlett Li's avatar
Scarlett Li committed
16
17
18

* __Install NNI through source code__
   
19
      git clone -b v0.3.4 https://github.com/Microsoft/nni.git
Scarlett Li's avatar
Scarlett Li committed
20
21
22
23
24
25
26
27
28
29
30
31
      cd nni
      source install.sh

## Further reading
* [Overview](Overview.md)
* [Use command line tool nnictl](NNICTLDOC.md)
* [Use NNIBoard](WebUI.md)
* [Define search space](SearchSpaceSpec.md)
* [Config an experiment](ExperimentConfig.md)
* [How to run an experiment on local (with multiple GPUs)?](tutorial_1_CR_exp_local_api.md)
* [How to run an experiment on multiple machines?](tutorial_2_RemoteMachineMode.md)
* [How to run an experiment on OpenPAI?](PAIMode.md)