349
edits
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
The most recent official release is [https://octave.sourceforge.io/download.php?package=odepkg-0.8.5.tar.gz version 0.8.5], which however is out of date (it includes functions which have been transferred to core Octave) and [https://savannah.gnu.org/bugs/?func=detailitem&item_id=46309 will] [https://savannah.gnu.org/bugs/?func=detailitem&item_id=48280 not] [https://savannah.gnu.org/bugs/?func=detailitem&item_id=50684 install] at all with recent compilers and versions of Octave. | The most recent official release is [https://octave.sourceforge.io/download.php?package=odepkg-0.8.5.tar.gz version 0.8.5], which however is out of date (it includes functions which have been transferred to core Octave) and [https://savannah.gnu.org/bugs/?func=detailitem&item_id=46309 will] [https://savannah.gnu.org/bugs/?func=detailitem&item_id=48280 not] [https://savannah.gnu.org/bugs/?func=detailitem&item_id=50684 install] at all with recent compilers and versions of Octave. | ||
Until a new official release is made, Octave 4.2.x users might consider installing a development snapshot of the package, as follows:< | Until a new official release is made, Octave 4.2.x users might consider installing a development snapshot of the package, as follows: | ||
[fname, success] = urlwrite ("https://bitbucket.org/odepkg/odepkg/get/default.tar.gz", [P_tmpdir "odepkg.tar.gz"]); | <code> | ||
assert (success) | [fname, success] = urlwrite ("https://bitbucket.org/odepkg/odepkg/get/default.tar.gz", [P_tmpdir "odepkg.tar.gz"]); | ||
pkg ("install", fname) | assert (success) | ||
</ | pkg ("install", fname) | ||
</code> | |||
To install under the 4.3.0+ development version of Octave one can use the following instead: | To install under the 4.3.0+ development version of Octave one can use the following instead: | ||
< | <code> | ||
[fname, success] = urlwrite ("https://bitbucket.org/odepkg/odepkg/get/octave43.tar.gz", [P_tmpdir "odepkg.tar.gz"]); | [fname, success] = urlwrite ("https://bitbucket.org/odepkg/odepkg/get/octave43.tar.gz", [P_tmpdir "odepkg.tar.gz"]); | ||
assert (success) | assert (success) | ||
pkg ("install", fname) | pkg ("install", fname) | ||
</ | </code> | ||
[[Category:Octave-Forge]] | [[Category:Octave-Forge]] |
edits