Octave for Windows Subsystem for Linux: Difference between revisions

From Octave
Jump to navigation Jump to search
(Strip redundant content from Octave for Microsoft Windows.)
(Make stub article a redirect page.)
Tag: New redirect
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
:''This article is about tips to use octave on linux platform using WSL(Windows Subsystem for linux)''
#REDIRECT [[Octave for Microsoft Windows]]
 
On 64 bit Windows 10, we can now use linux applications using WSL(Windows Subsystem for linux). We now use and build linux version Octave.
The original page editor only uses Ubuntu 18.04 so that description is limited to Ubuntu. Edit from people who use other distribution are welcome
 
= Preparation =
 
* The first thing you carry out to install WSL. See Microsft Page [https://docs.microsoft.com/ja-jp/windows/wsl/install-win10]. 
 
 
* For executable installers: the user can simply run the downloaded file and follow the on-screen installation prompts.  It is recommended that the installation path does not include spaces or non-ASCII characters.  Shortcuts to the program will be created automatically.
 
* For the 7z/zip archives:
# Extract the file content to a directory on the harddrive (such as {{Path|C:\Octave}}). Spaces or non-ASCII characters in the path are discouraged and may cause program errors.
# Manually create a shortcut  to the {{Path|octave.vbs}} file in the main installation directory. (Right-click on the file, select 'Create Shortcut', and move the new shortcut to your desired location.)
# Run the {{Path|fc_update.bat}} file before running Octave to reduce plot delays due to the Windows font cache.
 
==Packages==
 
A selection of pre-built, [[Octave Forge]] packages are included with for all versions of the official Windows release.  If you installed Octave using the executable installer, you can confirm the package list by typing the command below at the Octave command prompt:
 
  >> pkg list
 
If instead you installed Octave from the .zip archive, you need first to rebuild the package list on your local machine. (The command above will produce a blank output and packages will be inaccessible before rebuilding.) Do this by typing the following command:
 
  >> pkg rebuild
 
The package list should now be populated with the pre-installed packages.  All packages can be updated to the latest version by running:
 
  >> pkg update
 
Other packages can be installed by running:
 
  >> pkg install -forge <package name>
 
To install a new or updated package version manually, the package file can be downloaded from the [https://octave.sourceforge.io/packages.php Octave Forge website] to the working directory and can be installed using:
 
  >> pkg install package_file_name.tar.gz
 
Detailed instructions for installing individual Octave Forge packages are given at https://octave.sourceforge.io/packages.php.
 
[[Category:Installation]]
[[Category:Microsoft Windows]]

Latest revision as of 10:03, 16 May 2020