Plone Set Up Error

I am getting errors when executing the command
wget -qO- https://goo.gl/H8MWNJ | bash

bash: line 3: virtualenv: command not found
bash: line 5: ../plone5devpy/bin/pip: No such file or directory
bash: line 6: ../plone5devpy/bin/buildout: No such file or directory
bash: line 7: bin/buildout: No such file or directory

The problem this is causing is that

"janga1997:~/workspace/plone5devel (5.0) $ bin/instance fg
bash: bin/instance: No such file or directory"

what I am doing wrong?

Error messages are usually helpful.
virtualenv is not installed or not in the PATH.

-aj

"
W: GPG error: http://mirror.cs50.net InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 13F06945906AE267
W: Size of file /var/lib/apt/lists/ppa.launchpad.net_git-core_ppa_ubuntu_dists_trusty_main_binary-amd64_Packages.gz is not what the server reported 3398 3401
W: Size of file /var/lib/apt/lists/ppa.launchpad.net_git-core_ppa_ubuntu_dists_trusty_main_binary-i386_Packages.gz is not what the server reported 3394 3399
"
This is what I got when running sudo apt-get update
I am running all this on ide.c9.i0 for fixing a couple of bugs in Plone for Google summer of code program. i am not really experienced in Plone.
What do I different..?

If you are new to Plone, consider using the Unified Installer:
https://plone.org/products/plone/releases/5.0.2

This is a shortcut installer I put together, at the time c9.io shipped with virtualenv but now you need to run the following to install it:

sudo apt-get install python-virtualenv

The try running the wget command provided again.

1 Like