diff --git a/docs/how_to/install.md b/docs/how_to/install.md index 7e1800e6fbfe..f1e1672d2781 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, --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 # 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