Questions tagged [scilab]

"Scilab is free and open source software for numerical computation providing a powerful computing environment for engineering and scientific applications." ~ The Scilab Website

Scilab is a free and open source software and programming language intended for numerical computations (although with one of the many available toolboxes designed for it, it becomes capable of symbolic calculations). It is released under the CeCILL license (GPL-compatible) and has many of the same functionalities as MATLAB. Its syntax is also similar to MATLAB, although is generally considered more compatible with the MATLAB syntax.

It is available in the official Ubuntu repositories (hence it is available via APT and the software centre), but this version often lags behind the latest releases of this software. Its source code and Linux binary tarball can be downloaded from here.

The binary tarball includes an executable shell script that will start the program, it is possible to call scilab from the command-line by creating a /usr/bin/scilab file with the contents BINDIR/bin/scilab where BINDIR is replaced with the location of the extracted contents of the binary tarball. For example, say one wanted to make Scilab executable by running scilab from the shell on a 32-bit system, then the following technique should work (which has been tested successfully on 32 bit Ubuntu 15.04):

ver=5.5.2 #to be changed with the latest available version of Scilab
cd ~
wget -c http://www.scilab.org/download/$ver/scilab-$ver.bin.linux-i686.tar.gz
tar -xzf scilab-$ver.bin.linux-i686.tar.gz
mv scilab-$ver scilab
cd scilab
nano scilab

Then in nano adding:

/home/username/scilab/bin/scilab

Press Ctrl+X, then Y and then Enter or Return to save the changes. Then run:

chmod +x scilab
sudo mv scilab /usr/bin/scilab

to test whether this has worked run scilab from the command line.

30 questions
9
votes
3 answers

How to get Scilab 6.0.1 working on Ubuntu 18.04 LTS?

I have installed clean Ubuntu MATE 18.04 LTS and installed Scilab from repository here with sudo apt-get update sudo apt-get install scilab After installation I tried to launch it from GUI (Applications → Other → Scilab) - it does not start. Then I…
N0rbert
  • 103,263
4
votes
2 answers

How to get Scilab 6.1.0 working on Ubuntu 20.04 LTS?

I have installed clean Ubuntu MATE 20.04 LTS and installed Scilab from repository here with sudo apt-get update sudo apt-get install scilab After installation I tried to launch it from GUI (Applications → Other → Scilab) - it does not start. Then I…
N0rbert
  • 103,263
3
votes
7 answers

How to install and run Scilab manually?

Firstly, I saw topics such as 'How to install manually a software...' but it did not solve my problem. I've downloaded Scilab 5.4.1 from the official website and I extracted the .tar.gz file into: /home/scilab-5.4.1 I then tried the commands below,…
3
votes
1 answer

How to get Scilab 6.0.1 working on Ubuntu 18.10?

I have installed clean Ubuntu MATE 18.10 and installed Scilab from repository here with sudo apt-get update sudo apt-get install scilab After installation I tried to launch it from GUI (Applications → Other → Scilab) - it does not start. Then I…
N0rbert
  • 103,263
2
votes
3 answers

After latest updates Scilab 5.5.2 does not start on Ubuntu 16.04.3 LTS (amd64, AMD A4-4000 APU)

I have installed Ubuntu 16.04.3 LTS on computer with AMD A4-4000 APU with Radeon(tm) HD Graphics and installed Scilab 5.5.2 here from official repository (package version 5.5.2-2ubuntu3). It worked normally on 2017-12-24, but broken by some latest…
N0rbert
  • 103,263
2
votes
0 answers

How to get Scilab 6.1.0 GUI (not just CLI) working on Ubuntu 20.04 LTS without smashing other applications?

There is a question: How to get Scilab 6.1.0 working on Ubuntu 20.04 LTS? that shows how to install Scilab 6.1.0 from either the Scilab tar from Scilab or from Ubuntu 20.10. The first one is for the CLI only -- I need the GUI. The second one…
Yasha Karant
  • 1,193
2
votes
1 answer

How to run Scilab 5.5.2 on Ubuntu 16.04 LTS with all updates installed?

I have just ended clean installation of the Ubuntu 16.04 LTS. I installed Scilab here from the official repository as simple as sudo apt-get install scilab. Then I tried to launch it from the GUI, but it does not start. Running scilab from the…
N0rbert
  • 103,263
2
votes
0 answers

Freeze the Scilab 6.0.1 console when iterating

When executing a for cycle in Scilab inside the console it locks up and does not transmit the information impression fluently. For example for i=1:280000, disp(i), end But when running the previous loop in Scilab Advanced CLI shows fluently the…
2
votes
1 answer

Scilab 5.5.2 on Ubuntu 18.04

Scilab 6 seems to have some error on Ubuntu 18.04, so I want to try running 5.5.2. I downloaded the binaries from Scilab website. When I try to run with ./scilab in the bin folder, it gives an authentication problem with something called a libEGL…
2
votes
0 answers

I can't run Scilab Ubuntu 18.04

I have installed Scilab with sudo apt-get install scilab, and all went good until I tried to open the software, it just does not open, what I tried to do was install a new version of Java, and it make it kind of work, when I start it from the…
1
vote
0 answers

Scilab cannot create Java Main-Class on Ubuntu 17.10

First of all, I am sorry for asking this queston in askubuntu rather than in sciab community. But I need a fast solution and the sciab community can take a few days to answer a question. I have a problem after installing scilab 5.5.2 on ubuntu…
1
vote
0 answers

When I open Scilab through Dash, it's closed immediately after the program opened

I have installed Scilab manually, copied the Scilab.desktop to the directory /user/share/applications. When I open Scilab using the Scilab command, it works well.But when I open Scilab through Dash, Scilab is opened, then closed immediately. Can…
tmpbin
  • 203
1
vote
1 answer

Installation of scilab-5.5.2

Whenever I tried to use install Scilab-5.5.2 by sudo apt-get install scilab its asking Unable to fetch some archives, maybe run apt-get update or try with --fix-missing? while form Ubuntu software centre it is giving response faulty internet…
1
vote
0 answers

Scilab turns off itself

I installed scilab. Program allows me to do the following: navigate menus search blocks. solve a=4+7; But there are problems Try to solve without ";" like a=4+7 and than hit enter: program turns off itself and no error message. open xcos, try to…
acs
  • 113
1
vote
1 answer

I can't install Scilab

I can't install Scilab. When I ran sudo apt-get install scilab there was output: Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you…
1
2