Commit 4f4cd5c1 by Tianqi Chen Committed by GitHub

[DOC] More detailed installation instruction (#262)

* [DOC] More detailed installation instruction

* fix lang
parent 71cb07ae
...@@ -72,6 +72,9 @@ There are several ways to install the package: ...@@ -72,6 +72,9 @@ There are several ways to install the package:
```bash ```bash
# install tvm package for the current user # install tvm package for the current user
# 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 cd python; python setup.py install --user
# or install tvm package system wide # or install tvm package system wide
cd python; sudo python setup.py install cd python; sudo python setup.py install
......
...@@ -29,7 +29,7 @@ ADD_CFLAGS = ...@@ -29,7 +29,7 @@ ADD_CFLAGS =
# Backend runtimes. # Backend runtimes.
#--------------------------------------------- #---------------------------------------------
# whether enable CUDA during compile # whether enable CUDA during compile
USE_CUDA = 1 USE_CUDA = 0
# whether enable OpenCL during compile # whether enable OpenCL during compile
USE_OPENCL = 0 USE_OPENCL = 0
......
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