At this point in the curriculum students will have set up their SDC Term 2 environment and dependencies, with the exception of Ipopt, Fortran, and CppAD. If you are setting up a fresh environment please refer to setup instructions starting here.
- Clone this repository and navigate to the cloned directory
- Download the appropriate version of Ipopt (3.12.7 or higher) from the link below. You may also use wget or a similiar command to download the source from the command line (see Linux instructions).
- Follow the instructions for your environment
- Ipopt
- Mac:
brew tap udacity/CarND-MPC-Project https://github.com/udacity/CarND-MPC-Project brew install ipopt --with-openblas
- Mac:
- For Linux and Windows Ubuntu BASH Please note that for any particular command, including execution of
.sh
scripts, it may be necessary to addsudo
prior to the command. It is also a good practice to runsudo apt-get update
prior to installation of new libraries.
-
Linux:
sudo apt-get install gfortran
apt-get install unzip
wget https://www.coin-or.org/download/source/Ipopt/Ipopt-3.12.7.zip && unzip Ipopt-3.12.7.zip && rm Ipopt-3.12.7.zip
- Call
install_ipopt.sh
with the source directory as the first argument, ex:./install_ipopt.sh Ipopt-3.12.7
orbash install_ipopt.sh Ipopt-3.12.7
-
Windows: For Windows environments there are two main options
- Follow Linux instructions in the Ubuntu Bash environment. Please not that install instructions should be executed from the repository directory. Changing to a Windows directory (ie
cd /mnt/c .....
) can result in installation issues, particularly for Windows directories that contain spaces. - Use the docker container described here, which comes pre-configured with Ipopt.
- Follow Linux instructions in the Ubuntu Bash environment. Please not that install instructions should be executed from the repository directory. Changing to a Windows directory (ie
-
- Mac:
brew install cppad
- Linux
sudo apt-get install cppad
or equivalent. - Windows: For Windows environments there are two main options
- Follow Linux instructions in the Ubuntu Bash environment
- Use the docker container described here, which comes pre-configured with CppAD.
- Mac:
- If challenges to installation are encountered (install script fails). Please consult the forums. Please feel free to submit additional tips or forum threads to the issue reports repo, for potential inclusion in this document.
- Some Mac users have experienced the following error:
This error has been resolved by updrading ipopt with
Listening to port 4567 Connected!!! mpc(4561,0x7ffff1eed3c0) malloc: *** error for object 0x7f911e007600: incorrect checksum for freed object - object was probably modified after being freed. *** set a breakpoint in malloc_error_break to debug
brew upgrade ipopt --with-openblas
per this forum post