No description
Find a file
2025-03-21 21:28:50 +01:00
paramecio Fix in autologin 2025-03-21 21:28:50 +01:00
tests Modernize basecode, now cromosoma and citoplasma are deleted by more comprensible libraries, and libraries.db directory names 2024-11-03 12:36:45 +01:00
.gitignore Fixes in config_admin 2015-12-09 16:05:14 +01:00
.gitmodules Added jsutils submodule 2024-12-13 23:48:34 +01:00
LICENSE.txt License change from GPL3 to AGPL3 2024-11-03 12:41:20 +01:00
MANIFEST.in Modernize basecode, now cromosoma and citoplasma are deleted by more comprensible libraries, and libraries.db directory names 2024-11-03 12:36:45 +01:00
pyproject.toml Fixes in paramecio models and create_module 2024-12-29 20:09:24 +01:00
README.md Fixes in readme 2025-03-15 00:57:15 +01:00
README.rst Added setup.py 2015-12-10 15:51:13 +01:00
REQUIREMENTS Added license 2018-01-31 00:25:49 +01:00
setup.py Modernize basecode, now cromosoma and citoplasma are deleted by more comprensible libraries, and libraries.db directory names 2024-11-03 12:36:45 +01:00
TESTS Added test document 2015-12-09 02:27:07 +01:00

A simple webframework based in Bottle and Mako for create nice webapps

Installation

This guide give you step by step for install paramecio sucessfully.

Requirements

For install Paramecio you need a server preferably with GNU/Linux installed. Paramecio is tested normally in Debian derivated how Ubuntu, and Red hat derivated distros how Centos or Fedora but should work fine in FreeBSD, MacOSX and other *nix like operating systems.

Also, you need the next software installed in your os:

Python 3.4 or later.

Paramecio should work fine since python 3.6 but is tested in 3.12 and 3.13 python 3 versions.

In Debian and Ubuntu you can install Python 3 using the next command: apt-get install python3.

In Fedora and other Red Hat derived distros you can use dnf install python3.

MySQL or MariaDB database servers.

MariaDB 10.6 and later are recommended.

In Debian and Ubuntu you can install MariaDB using the next command: apt-get install mariadb-server.

In Fedora and other Red Hat derived distros you can use dnf install mariadb-server.

Pip

Pip is the package manager of python. You can use the package manager of your os for get python dependencies packages but in my experience is better install the packages directly with pip.

In Debian and Ubuntu you can install pip using the next command: apt-get install python3-pip.

In Fedora and other Red Hat derived distros you can use dnf install python3-pip.

Git

Git is a tool used for manage source code repositories. Also is a tool that can be used for distribute software. For install the next tools you need git installed in your server.

In Debian and Ubuntu you can install git using the next command: apt-get install git.

In Fedora and other Red Hat derived distros you can use dnf install git.

Install Paramecio Framework

You can install the framework using the next command in your server:

pip3 install paramecio

or if you want development version:

pip3 install git+https://bitbucket.org/paramecio/parameciofm

This command will install in your server paramecio framework with its dependencies.

When Paramecio finish the installing, you can create your first paramecio site with paramecio command.

Tipical errors

If you get an error in your installation of dependencies how MarkupSafe or SqlAlchemy, please install gcc or install manually mako and sqlalchemy with your system package manager. For example, for debian and ubuntu:

apt-get install python3-mako python3-sqlalchemy and try pip3 command again.