From 8f2367aca74379200095d8e15e07bf5c146d1df5 Mon Sep 17 00:00:00 2001 From: tqchen Date: Tue, 18 Jul 2017 22:38:39 -0700 Subject: [PATCH 1/2] [DOC] More detailed installation instruction --- docs/how_to/install.md | 3 +++ make/config.mk | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/how_to/install.md b/docs/how_to/install.md index 7e1800e6fbfe..e62656f9e4da 100644 --- a/docs/how_to/install.md +++ b/docs/how_to/install.md @@ -72,6 +72,9 @@ There are several ways to install the package: ```bash # install tvm package for the current user + # NOTE: if you installed python via homebrew, you do not --user during installaiton + # it will be automatically installed to your user directory. + # providing --user flag may trigger error during installation in such case. cd python; python setup.py install --user # or install tvm package system wide cd python; sudo python setup.py install diff --git a/make/config.mk b/make/config.mk index ef682f54e623..15e5917e0036 100644 --- a/make/config.mk +++ b/make/config.mk @@ -29,7 +29,7 @@ ADD_CFLAGS = # Backend runtimes. #--------------------------------------------- # whether enable CUDA during compile -USE_CUDA = 1 +USE_CUDA = 0 # whether enable OpenCL during compile USE_OPENCL = 0 From 5c80e8ef1115acbe740affb7291d97a56ae96ada Mon Sep 17 00:00:00 2001 From: tqchen Date: Tue, 18 Jul 2017 22:40:47 -0700 Subject: [PATCH 2/2] fix lang --- docs/how_to/install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how_to/install.md b/docs/how_to/install.md index e62656f9e4da..f1e1672d2781 100644 --- a/docs/how_to/install.md +++ b/docs/how_to/install.md @@ -72,7 +72,7 @@ There are several ways to install the package: ```bash # install tvm package for the current user - # NOTE: if you installed python via homebrew, you do not --user during installaiton + # NOTE: if you installed python via homebrew, --user is not needed during installaiton # it will be automatically installed to your user directory. # providing --user flag may trigger error during installation in such case. cd python; python setup.py install --user