81 | | Dakota will require that you have a python that is of version python2. The easiest way to do this is to define an alias for python that calls `/usr/bin/python2` in your `~/.bashrc`: |
82 | | |
83 | | {{{ |
84 | | alias python="/usr/bin/python2" |
85 | | }}} |
| 81 | Dakota will require that you have a python that is of version python2. The easiest way to do this is create a link for a `python` call to `/usr/bin/python2`. One way to do this is to add a path to a new bin folder in your `~/.bashrc`: |
| 82 | |
| 83 | {{{ |
| 84 | export PATH="$PATH:${HOME}/bin" |
| 85 | }}} |
| 86 | |
| 87 | Then, create a bin folder in your home directory (if you do not have one already). In your home directory, type `mkdir bin`. Then `cd bin`, and finally type `ln -s /usr/bin/python2 python`. |