349
edits
No edit summary |
No edit summary |
||
Line 4: | Line 4: | ||
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: | ||
< | |||
<nowiki> | |||
[fname, success] = urlwrite ("https://bitbucket.org/odepkg/odepkg/get/default.tar.gz", [P_tmpdir "odepkg.tar.gz"]); | [fname, success] = urlwrite ("https://bitbucket.org/odepkg/odepkg/get/default.tar.gz", [P_tmpdir "odepkg.tar.gz"]); | ||
assert (success) | assert (success) | ||
pkg ("install", fname) | pkg ("install", fname) | ||
</ | </nowiki> | ||
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: | ||
< | <nowiki> | ||
[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) | ||
</ | </nowiki> | ||
[[Category:Octave-Forge]] | [[Category:Octave-Forge]] |
edits