Differences between revisions 3 and 6 (spanning 3 versions)
Revision 3 as of 2015-04-15 16:56:46
Size: 603
Editor: msapiro
Comment: Added nodejs note
Revision 6 as of 2015-04-15 17:23:37
Size: 955
Editor: terri
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
This page contains my notes on things I needed to do to get the mailman-bundler to run on ubuntu 14.04 in docker. This page contains my notes on things I needed to do to get the mailman-bundler to run on ubuntu 14.04 in docker.  I am mostly following http://mailman-bundler.readthedocs.org/en/latest/ with the following additions/modifications.
Line 14: Line 14:
ln -s /usr/bin/nodejs /usr/bin/node
Line 15: Line 16:
I had a problem with the above. It is OK and does the right thing except on Ubuntu, there is a name conflict with 'node' so the 'node' command is named 'nodejs' you need a symlink somewhere from node to /usr/bin/nodejs. MAS
(The last part is because there is a name conflict with 'node' so the 'node' command is named 'nodejs' you need a symlink somewhere from node to /usr/bin/nodejs. MAS)

{{{
ln -s /usr/bin/pip3 ~/mailman-bundler/venv-3.4/bin/pip
}}}

For some reason, pip doesn't install correctly in the venv-3.4 directory, so you can link it manually (do this after running buildout the first time if venv-3.4 hasn't been created)

This page contains my notes on things I needed to do to get the mailman-bundler to run on ubuntu 14.04 in docker. I am mostly following http://mailman-bundler.readthedocs.org/en/latest/ with the following additions/modifications.

Install some prerequisites in Python:

apt-get update
apt-get install bzr python3-dev python3-pip python-dev python-pip python-virtualenv

Set up nodejs, the node package manager, and

apt-get install nodejs npm
npm install -g less
ln -s /usr/bin/nodejs /usr/bin/node

(The last part is because there is a name conflict with 'node' so the 'node' command is named 'nodejs' you need a symlink somewhere from node to /usr/bin/nodejs. MAS)

ln -s /usr/bin/pip3 ~/mailman-bundler/venv-3.4/bin/pip

For some reason, pip doesn't install correctly in the venv-3.4 directory, so you can link it manually (do this after running buildout the first time if venv-3.4 hasn't been created)

MailmanWiki: DEV/Mailman 3.0/Mailman 3.0 Suite Install on Ubuntu (last edited 2023-11-24 16:04:02 by msapiro)