Skip to main content

Posts

Showing posts from June, 2019

Odoo 12 Development In Ubuntu 18.04 Using Pycharm

Odoo 12 Development in ubuntu 18.04 using PyCharm Update and upgrade the system first sudo apt-get update sudo apt-get -y upgrade Installing python dependencies for odoo12       sudo apt install git python3-pip build-essential wget python3-dev python3-venv python3-wheel    libxslt-dev libzip-dev libldap2-dev libsasl2-dev python3-setuptools node-less Installing Pycharm  For install PyCharm, Install PyCharm on ubuntu 18.04 is by snappy packaging system, open terminal and type following command sudo snap install pycharm-community --classic Or,you can download it from here https://www.jetbrains.com/pycharm/download/download-thanks.html?platform=linux  . After the successfull download of the pycharm, goto the bin folder,open terminal here pycharm.sh file using ./pycharm.sh Alternatively,you can install PyCharm CE using the ubuntu Software Center as shown in the image below Installing P...