Yes. You can install virtualenvand then install the supervisor pip.
virtualenv env
cd env
./bin/pip install supervisor
create configuration file:
echo_supervisord_conf > /path_to_configuration_file/supervisord.conf
You can run multiple instances, just use a different port manager to listen in the configuration file:
port=127.0.0.1:9001
source
share