Posts

Install Python3.7 From Source

Python is a powerful programming language. It is very friendly and easy to learn. At writing time of this article Python 3.7.3 latest stable version is available to download and install. This tutorial will help you to install Python 3.7.3 on your CentOS, Red Hat & Fedora operating systems. Step 1 – Requirements This Python installation required GCC compiler on your system. Login to your server using ssh or shell access. Now, use the following command to install prerequisites for Python before installing it. yum install gcc openssl-devel bzip2-devel libffi-devel Read: How to Use SSH to Connect Remote Linux Server Step 2 – Download Python 3.7 Download Python using the following command from the Python official site. You can also download the latest version in place of specified below. cd /usr/src wget https://www.python.org/ftp/python/3.7.3/Python-3.7.3.tgz Now extract the downloaded package. tar xzf Python-3.7.3.tgz Step 3 – Install Python 3.7 Use below set ...

Installing Odoo

Image
Odoo is among the most popular business software which you can find nowadays. The things that make so popular this application is that offers a range of business application in one place. Some of the applications we can mention are Point of Sale (POS), Inventory, CRM, VoIP, Website, Live Chat, e-Commerce, manufacturing, billing, accounting, warehouse, project management, inventory, Forum, Android & iPhone Apps, eCommerce, and much more, all seamlessly integrated. Odoo comes up with a new version 12 this October. In this article, we will show you how to install Odoo 12 on CentOS 7 . Odoo is known as resource intensive application, so our recommendation is to start with our SSD 2 VPS hosting plan or higher. Table of Contents 1. Log in as root to your server via SSH 2. Update the system 3. Install Python 3.5 packages and Odoo dependencies 4. Create Odoo user 5. Install and configure PostgreSQL 6. Install Wkhtmltopdf 7. Install and configure Odoo 12 8. Cr...