Tag Archives: Python

How to Setup Odoo Development Environment on Ubuntu 22.04 Jammy JellyFish

In this tutorial, I will go through how to set up the Odoo development environment on Ubuntu 22.04 with Eclipse as the IDE. This tutorial is valid for all Odoo versions from 8.0 to 16.0 and is effective for a fresh Ubuntu 22.04 Desktop with no pre-installed tools e.g. JDK, Python, or Eclipse. You may skip to the next step if you have already installed any of the above-mentioned tools.

Continue reading How to Setup Odoo Development Environment on Ubuntu 22.04 Jammy JellyFish

Install Latest Eclipse with Pydev on Ubuntu 22.04 for Python Development

Eclipse with PyDev plugged is one of the most favorite IDEs for Python developers as it is simple to setup and has a lot of cool features for all kinds of development (including web and javascript application).

Continue reading Install Latest Eclipse with Pydev on Ubuntu 22.04 for Python Development

How to Install and Manage multiple Python versions on Ubuntu 22.04

Ubuntu 22.04 is the second LTS version of Ubuntu that drops Python2 support, and come fresh out of the box with Python 3.10.6. But what if you’ve written apps intended for a newer version of Python or you would want to run apps written for an older version of Python, or even you would want to run multiple apps along multiple versions of Python on Ubuntu 22?

Continue reading How to Install and Manage multiple Python versions on Ubuntu 22.04

Install Python 2.7 and Pip on Ubuntu 22.04 Jammy Jellyfish

The problem

The Python Software Foundation declared Python 2 End of Life (EOL) on January 1, 2020, and ended support. Python 2.7.18 was the final release of Python 2, released in April 2020. No version of Python 2 will receive updates, not even for critical security vulnerabilities. Thus, Python 2 has not been the default installed version on Ubuntu versions for a few years so far. Ubuntu 20.04 is the first LTS version of Ubuntu to drop Python2, coming fresh out of the box with Python 3.8.5.

Continue reading Install Python 2.7 and Pip on Ubuntu 22.04 Jammy Jellyfish