Skip to main content

Installing OpenERP on Ubuntu 12.04

1. Install Ubuntu Server with OpenSSH Server.So that you can run your commands from a remote server.


2. Run the following commands to install required depedency
sudo apt-get install postgresql postgresql-client python-dateutil python-feedparser python-gdata python-ldap python-libxslt1 python-lxml python-mako python-openid python-psycopg2 python-pybabel python-pychart python-pydot python-pyparsing python-reportlab python-simplejson python-tz python-vatnumber python-vobject python-webdav python-werkzeug python-xlwt python-yaml python-zsi

3. Download Latest Openerp all file

wget http://nightly.openerp.com/6.1/releases/openerp_6.1-1-1_all.deb

4. Install openErp server.

sudo dpkg -i openerp_6.1-1-1_all.deb
sudo apt-get install openerp -f

5. Reboot

6. Access the Web Client using http://ip:8069

Comments

  1. Thank you I'm can install by blog but I can't create database

    ReplyDelete
  2. Thank you! This tutorial is the simplest of all and well written. For the 7.0 version of OpenERP Python needs some more libraries installed but you just add those to the sudo command and it runs just fine. Again, thank you very much, you're a time saver.

    ReplyDelete
    Replies
    1. @Sid What extra libraries are needed for open ERP 7.0?

      Delete
  3. This comment has been removed by the author.

    ReplyDelete
  4. jst visit this link http://www.theopensourcerer.com/2012/12/how-to-install-openerp-7-0-on-ubuntu-12-04-lts/

    ReplyDelete

Post a Comment

Popular posts from this blog

Twelve Ways to Make Code Suck Less

Here are the ways Reduce State and State Mutation. Do Tactical Code Reviews. Give Good Meaningful Names. Avoid Long Method Names. Comment Why, Not What. Apply Zinsser's Principle in writing. Prefer Clear code over Clever Code. Avoid Primitive Obsession. Program with intention Favour loose coupling Favour High Cohesion Schedule Time to lower technical debt These Points are taken from https://www.youtube.com/watch?v=nVZE53IYi4w

API-AI

Intents ------ ------ An intent defines how the bot should react to what the user says. An intent in your agent represents a mapping between what a user says and what action should be taken by your product. Every intent you create should correspond to one question. In the intents you will write all the different ways of how those questions may be phrased by your customers. Don’t worry, you won’t have to write all of them. API.AI is using machine learning to train your agent to understand a lot more variations based on the examples you provide in intents. User Says --------- We can have several 'User Says' for a single intent.So we have input many different variations in which the user can as for the same intent. The API.AI platform uses machine learning to train agents to understand more variations of these examples. Even with a small number of examples, the agent can understand a lot of variations. You can try it with this agent. The more examples you add, the better the agent

10 Tips For Clean Code

#1: You're responsible for code quality. #2: Use meaningful names. #3: Write code that expresses intent. #4: Code should speak for itself. Less comments = less maintenance. #5: Leave the code better than you found it. #6: Single-responsibility code. i.e function does 1 thing well. Less arguments = better function. classes: most methods use most of the class' properties. #7: Tests (TDD). #8: Work on big picture skeleton, then fill in the details later (interface first, implementation later). #9: Independent components that can be used in different places.  #10: Master your craft. From https://www.youtube.com/watch?v=UjhX2sVf0eg