星期一, 5月 30, 2016

Odoo9 開發環境安裝 (五) 安裝 Oracle Java 及設定 PyCharm Community 開發Odoo

  • 由於 PyCharm Community 會使用到 Oracle Java JDK,所以要先行安裝
  • 參考網站

sudo apt-add-repository ppa:webupd8team/java

sudo apt-get update

sudo apt-get install oracle-java8-installer

  • Pycharm 官網下載 PyCharm Community ,先將檔案存起來,等一下在解壓縮

image

星期日, 5月 29, 2016

Odoo9 開發環境安裝 (四) 安裝 Odoo dependencies及Less CSS via nodejs

  • 參考官方網站的文件 Installing dependencies
  • Python dependencies listed in the requirements.txt file.

image

Odoo9 開發環境安裝 (三) 安裝 PostgreSQL、pgadmin3 及設定使用者密碼

  • 官方參考文件 Installing dependencies
  • 安裝 PostgreSQL 及管理工具 pgadmin3 ,相關內容可參考此網站

sudo apt-get install postgresql postgresql-contrib 安裝PostgreSQL伺服器

sudo apt-get install postgresql-client 安裝PostgreSQL客戶端

sudo apt-get install postgresql-server-dev-all

假設你要安裝psycopg2(PostgreSQL資料庫的Python介面卡),你需要安裝PostgreSQL的開發檔案。

sudo apt-get install pgadmin3 視窗版的管理程式

  • 依官方的建議建立PostgreSQL的使用者,同Ubuntu的登入帳號
  • Because the role login is the same as your unix login unix sockets can be use without a password (因同Ubuntu的登入帳號,所以不需密碼,設定完之後Odoo預設此帳號登入,所以不同於以往要去改openerp.conf)
sudo su - postgres -c "createuser -s $USER"

 

星期四, 5月 26, 2016

Odoo9 開發環境安裝 (二) 下載 Odoo 原碼

image

  • 在 Installing Odoo 的章節 Source Install 中有提到,所謂Source Install不是用Source安裝,而是用Source運行,簡單的來說,就像PHP一樣,袛要APACHE環境及插件準備好,就可以執行使用了

image

Odoo9 開發環境安裝 (一) 採VMware安裝 Ubuntu 16.04 LTS

image