Quick installation¶
Are you new to Genropy and just want to get an idea of its potential? You can do a quick install with the command:
pip install genropy
… And that’s it! pip will take care of everything.
Hint
You can use several installation profiles, detailed in full installation mode . For example:
pip install genropy"[pgsql,developer]"
Then initialize Genropy with the command:
gnr app initgenropy
And you can now launch the daemon and the server:
gnr web daemon
gnr web wsgiserve checkinstall
Hint
This installation mode will not make the source code available but allows you to start using Genropy immediately. It is therefore the recommended way to proceed on servers in production environment where there is no need to have the framework code available or for the first tests. If you are a developer, we still recommend that you proceed with the complete installation procedure shortly.
Updates¶
Genropy is frequently updated, so we recommend that you always keep up to date with the latest version available. With this installation mode, you just need to run the command:
pip install genropy --upgrade