Source code for the MEO Cloud CLI
- Create a link called
meoclouddin themeocloud/client/linux/daemon/folder, pointing to ameoclouddbinary which can be found here:
-
If you already have meocloud installed in your machine, it should be in your installation folder (tipically it's
/opt/meocloud). -
If not, download the tar.gz version of meocloud from the url below, replacing
$ARCHwith your architecture (i386, x86_64, armv6l),meoclouddshould be there too.URL:
https://meocloud.pt/binaries/linux/$ARCH/meocloud-latest_$ARCH_beta.tar.gz
-
Create another link in
meocloud/client/linux/clicalleddaemon, pointing tomeocloud/client/linux/daemon/daemon.py. -
Install
virtualenvif you don't have it already. -
Create a virtualenv for this project and activate it (although it's not required, you can also take a look at
virtualenvwrapper). -
Install the requirements for this project by running
pip install -r requirements.txt. -
Add the
meocloudfolder to your Python PATH. One easy way to do this is to create a link to themeocloudfolder inside yoursite-packagesfolder in your virtualenv (you can get there easily if you installedvirtualenvwrapperby runningcdsitepackages) -
Start MEO Cloud with
python meocloud/client/linux/cli/cli.py start.NOTE: If you had MEO Cloud installed and running, this will be equivalent to running
meocloud startwhich will fail since only one meocloud can be running at one time. Stop it first and try again.