"ts/vscode:/vscode.git/clone" did not exist on "dfe3c27b3f005de6881945dd2a783c177d27cd1e"
Unverified Commit abd164c2 authored by Yuge Zhang's avatar Yuge Zhang Committed by GitHub
Browse files

Bootstrapping tutorials in documentation (#4522)

parent cc122226
How to Launch an Experiment from Python How to Launch an Experiment from Python
======================================= =======================================
.. toctree:: .. code-block::
:hidden:
Start Usage <python_api_start> .. toctree::
Connect Usage <python_api_connect> :hidden:
Start Usage <python_api_start>
Connect Usage <python_api_connect>
Overview Overview
-------- --------
......
...@@ -28,7 +28,8 @@ ...@@ -28,7 +28,8 @@
git clone -b v2.6 https://github.com/Microsoft/nni.git git clone -b v2.6 https://github.com/Microsoft/nni.git
cd nni cd nni
python3 -m pip install --upgrade pip setuptools python3 -m pip install -U -r dependencies/setup.txt
python3 -m pip install -r dependencies/develop.txt
python3 setup.py develop python3 setup.py develop
从 NNI 源代码构建 Wheel 包 从 NNI 源代码构建 Wheel 包
...@@ -42,7 +43,8 @@ ...@@ -42,7 +43,8 @@
git clone -b v2.6 https://github.com/Microsoft/nni.git git clone -b v2.6 https://github.com/Microsoft/nni.git
cd nni cd nni
export NNI_RELEASE=2.6 export NNI_RELEASE=2.6
python3 -m pip install --upgrade pip setuptools wheel python3 -m pip install -U -r dependencies/setup.txt
python3 -m pip install -r dependencies/develop.txt
python3 setup.py clean --all python3 setup.py clean --all
python3 setup.py build_ts python3 setup.py build_ts
python3 setup.py bdist_wheel -p manylinux1_x86_64 python3 setup.py bdist_wheel -p manylinux1_x86_64
......
...@@ -44,6 +44,8 @@ ...@@ -44,6 +44,8 @@
git clone -b v2.6 https://github.com/Microsoft/nni.git git clone -b v2.6 https://github.com/Microsoft/nni.git
cd nni cd nni
python -m pip install -U -r dependencies/setup.txt
python -m pip install -r dependencies/develop.txt
python setup.py develop python setup.py develop
验证安装 验证安装
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment