weex command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
weex: command not found
or when using sudo you get the following error message
sudo: weex: command not found
Solutions to weex: command not found
How To Fix weex: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu weex is provided by weex package.
weex is:
Weex is an utility designed to automate the task of remotely maintaining a web page or other FTP archive. With weex, the maintainer of a web site or archive that must be administered through FTP interaction can largely ignore that process. FTP and FTPS protocols are supported. The archive administrator simply creates a local directory that serves as an exact model for the off-site data. All modifications and direct interaction is done locally to this directory structure. When the administrator wishes to coordinate the data on the remote site with that of the local model directory, simply executing weex accomplishes this in the most bandwidth-efficient fashion by only transferring files that need updating. The program will create or remove files or directories as necessary to accurately establish the local model on the remote server.
To fix this problem, we can install more using the command below.
sudo apt-get -y install weex
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install weex.
sudo apt -y install weex
Or if you have aptitude installed you can use the following command.
sudo aptitude install weex
Summary
In this tutorial we learn how to fix weex command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.