Drake installation procedure #2768
Labels
component: distribution
Nightly binaries, monthly releases, docker, installation
configuration: linux
priority: medium
I followed the source installation page (http://drake.mit.edu/from_source.html) to install drake on my Ubuntu 14.04 machine, I notice some guidelines might not be exactly correct.
Before setting my own fork of drake as the
origin
remote, I need to remove theorigin
first. This is what I didOtherwise it will throw the error
if I call
git remote add origin [email protected]:[your github user name]/drake.git
directly.Where should I call
make
command? Following http://drake.mit.edu/from_source.html#build-with-make, I create a folderbuild
inside drake-distro, and runmake
within thatbuild
folder. Then all the objects live within thebuild
folder. But in http://drake.mit.edu/from_source.html#stay-up-to-date, we should runmake
command indrake-distro
folder, this will create directoriesbuild
,pod-build
,drake/pod-build
insidedrake-distro
folder. Which one is correct?Should we still call
addpath_pods
when launching MATLAB? In http://drake.mit.edu/from_source.html#test-your-installation, it says we only need to calladdpath_drake
.I also had several problems to call MATLAB functions if I run
make
within thedrake-distro/build
folder.If I call
drake-distro/drake/addpath_drake
, I then get the errorI have to add
drake-distro/build/install/matlab
to my matlab path, so that I can calladdpath_drake
.Another problem is that when I call
getCMakeParam
in MATLAB, it looks into the cache file indrake-distro/drake/pod-build/CMakeCache.txt
, which does not exist if I callmake
indrake-distro/build
folder. But this file exists if I callmake
indrake-distro
folder.The text was updated successfully, but these errors were encountered: