Wednesday 30 November 2016

Coolpad Note 3S with 3GB RAM, 4G VoLTE Launched in India at Rs. 9,999

Coolpad has launched Note 3S smartphone in India. It is available in Gold and White colors and is priced at Rs. 9,999.. The smartphone will be exclusively available via online shopping partner Amazon starting December 7.

Coolpad Note 3S features 5.5-inch (1280  x 720 pixels) HD IPS 2.5D curved glass display powered by 1.36GHz Octa-Core Qualcomm Snapdragon 415 64-bit processor with Adreno 405 GPU and 3GB RAM. It has an internal storage of 32GB and can be expanded via microSD up to 32GB. It sports a 13MP rear camera with LED Flash and a 5MP front facing camera. It runs on Android 6.0 Marshmallow with Cool UI 8.0 on top and has 2500 mAh battery.

Coolpad Note 3S
Coolpad Note 3S
Key Features :

  • 5.5-inch (1280  x 720 pixels) HD IPS 2.5D curved glass display
  • 1.36GHz Octa-Core Qualcomm Snapdragon 415 64-bit processor with Adreno 405 GPU
  • 3GB RAM
  • 32GB internal storage, Expandable via microSD up to 32GB
  • 13MP rear camera with LED Flash
  • 5MP front facing camera
  • Android 6.0 Marshmallow with Cool UI 8.0 on top
  • Dual SIM
  • Fingerprint sensor
  • 4G VoLTE, Wi-Fi 802.11 b/g/n, Bluetooth 4.0, GPS, USB OTG
  • 2500 mAh battery

Coolpad Mega 3 with 2GB RAM, Triple SIM Support, 4G VoLTE Launched in India at Rs. 6,999

Coolpad has launched Mega 3 smartphone in India. It is available in Gold, Grey and White colors and is priced at Rs. 6,999. The smartphone will be exclusively available via online shopping partner Amazon starting December 7.

Coolpad Mega 3 features 5.5-inch (1280 x 720 pixels) HD display powered by 1.25GHz Quad-core MediaTek MT6737 processor with Mali-T720 GPU and 2GB RAM. It has an internal storage of 16GB and can be expanded via microSD up to 64GB. It sports a 8MP autofocus rear camera with LED Flash and a 8MP front facing camera with LED flash. It runs on Android 6.0 Marshmallow OS with CoolUI 8.0 on top and has 3050 mAh battery.

Coolpad Mega 3
Coolpad Mega 3
Key Features :
  • 5.5-inch (1280 x 720 pixels) HD display
  • 1.25GHz Quad-core MediaTek MT6737 processor with Mali-T720 GPU
  • 2GB RAM
  • 16GB internal storage, Expandable via microSD up to 64GB
  • 8MP autofocus rear camera with LED Flash
  • 8MP front facing camera with LED flash
  • Android 6.0 Marshmallow OS with CoolUI 8.0 on top
  • Triple SIM
  • 4G VoLTE, WiFi 802.11 b/g/n, Bluetooth 4.0, GPS, USB OTG
  • 3050 mAh battery

Tuesday 29 November 2016

Lenovo K6 Power with 3GB RAM, 4000mAh Battery Launched in India at Rs. 9,999

Lenovo has launched K6 Power smartphone in India. It is available in Dark gray, Gold and Silver colors and is priced at Rs. 9999. The smartphone will be available via online shopping partner Flipkart starting December 6th at 12PM through open sales.

Lenovo K6 Power features 5-inch (1920 x 1080 pixels) Full HD IPS display powered by Octa-Core Qualcomm Snapdragon 430 ( 4 x 1.2 GHz Cortex A53 + 4 x 1.5 GHz Cortex A53) 64-bit processor with Adreno 505 GPU and 3GB RAM. It has an internal storage of 32GB and can be expanded via microSD up to 128GB. It sports a 13MP rear camera with LED Flash, PDAF and a 8MP front facing camera. it runs on Android 6.0.1 Marshmallow and has 4000 mAh built-in battery

Lenovo K6 Power
Lenovo K6 Power
Key Features :
  • 5-inch (1920 x 1080 pixels) Full HD IPS display
  • Octa-Core Qualcomm Snapdragon 430 ( 4 x 1.2 GHz Cortex A53 + 4 x 1.5 GHz Cortex A53) 64-bit processor with Adreno 505 GPU
  • 3GB RAM
  • 32GB internal storage, Expandable via microSD 128GB
  • 13MP rear camera with LED Flash, PDAF
  • 8MP front facing camera
  • Android 6.0.1 Marshmallow
  • Dual SIM
  • Fingerprint sensor
  • 4G LTE, Wi-Fi 802.11 b/g/n, Bluetooth 4.1, GPS, USB OTG
  • 4000 mAh built-in battery

Saturday 26 November 2016

How To Install the Django Web Framework on Ubuntu

Django is a full-featured Python web framework for developing dynamic websites and applications. Using Django, you can quickly create Python web applications and rely on the framework to do a good deal of the heavy lifting.

In this guide, we will show you how to set up Django on an Ubuntu.


There are different way to install Django, you can choose any one from below

1: Install through pip

Pip is a package manager for Python. Python has a central package repository from which we can download the python package. It's called Python Package Index (PyPI).

sudo apt-get update

Now you can install pip. If you plan on using Python version 2, install using the following commands:

sudo apt-get install python-pip

If, instead, you plan on using Python 3, use this command:

sudo apt-get install python3-pip

Now that you have pip, we can easily install Django. If you are using Python 2, you can type:

sudo pip install django

If you are using Python 3, use the pip3 command instead:

sudo pip3 install django

You can verify that the installation was successful by typing:

django-admin --version

2: Install Django with Virtualenv

Virtualenv is a python environment builder, it is used to create isolated python environments. This tool allows you to create virtual Python environments where you can install any Python packages you want without affecting the rest of the system. This allows you to select Python packages on a per-project basis regardless of conflicts with other project's requirements.

sudo apt-get update

Now you can install pip. If you plan on using Python version 2, install using the following commands:

sudo apt-get install python-pip

If, instead, you plan on using Python 3, use this command:

sudo apt-get install python3-pip

Now that you have pip, we can easily install Django. If you are using Python 2, you can type:

sudo pip install virtualenv

If you are using Python 3, use the pip3 command instead:

sudo pip3 install virtualenv

Now we can use the virtualenv command to create a new environment with python3 as default python version. So let's create a new environment "newenviron" with python3 as the python version and pip3 for the django installation.

mkdir ~/newproject
cd ~/newproject
virtualenv newenviron

Here, "newenviron" is the name of the environment. A directory will be created with the name you select, which will hold the file hierarchy where your packages will be installed.

To install packages into the isolated environment, you must activate entering the command:

source newenviron/bin/activate

Pip will be automatically installed inside the virtual environment.

Next, install django in the virtual environment that we've created:

pip install django

You can verify the installation by typing:

django-admin --version

3: Install through Git

sudo apt-get update

Now you can install pip. If you plan on using Python version 2, install using the following commands:

sudo apt-get install git python-pip

If, instead, you plan on using Python 3, use this command:

sudo apt-get install git python3-pip

Once you have installed git, now you can clone the Django repository.

git clone git://github.com/django/django ~/django-dev

Once the repository is cloned, you can install it using pip. We will use the -e option to install in "editable" mode, which is needed when installing from version control. If you are using version 2 of Python, type:

sudo pip install -e ~/django-dev

If you are using Python 3, type:

sudo pip3 install -e ~/django-dev

You can verify that the installation was successful by typing:

django-admin --version

The manual Django installation is finished.

Thursday 24 November 2016

HTC Desire 10 Pro with 4GB RAM, 20MP Camera Launched in India at Rs. 26,490

HTC has launched Desire 10 Pro smartphone in India. It is available in Stone Black and Polar White colors in India and is priced at Rs. 26490. The smartphone will be available from mid-December across the country.

HTC Desire 10 Pro features 5.5-inch (1920 x 1080 pixels) Full HD IPS display with Corning Gorilla Glass powered by 1.8 GHz Octa-core MediaTek Helio P10 processor with up to 550MHz Mali T860 GPU and 4GB RAM. It has an internal storage of 6$GB and can be expanded via microSD up to 2TB. It sports 20MP rear camera with dual LED flash, Laser AF, EIS and a 13MP front facing camera. It runs on Android 6.0 Marshmallow with HTC Sense UI on top and has 3000 mAh battery.

HTC Desire 10 Pro
HTC Desire 10 Pro
Key Features :
  • 5.5-inch (1920 x 1080 pixels) Full HD IPS display with Corning Gorilla Glass
  • 1.8 GHz Octa-core MediaTek Helio P10 processor with up to 550MHz Mali T860 GPU
  • 4GB RAM
  • 64GB internal storage, Expandable via microSD up to 2TB
  • 20MP rear camera with dual LED flash, Laser AF, EIS
  • 13MP front facing camera
  • Android 6.0 Marshmallow with HTC Sense UI on top
  • Hybrid Dual SIM (nano + nano/microSD)
  • Fingerprint sensor, HTC BoomSound
  • 4G LTE, WiFi 802.11 a/b/g/n (2.4GHz + 5GHz), Bluetooth 4.2, GPS
  • 3000 mAh battery

Wednesday 23 November 2016

Intex Aqua E4 with 1GB RAM, Android 6.0, 4G VoLTE Launched in India

Intex has launched Aqua E4 smartphone with 4G VoLTE support in India. It is available in Champagne and Grey colors and is priced at Rs. 3,333. The smartphone has been listed on Shopclues quietly will go on sale on Friday, and the website is taking pre-registrations now.

Intex Aqua E4 features 4-inch (800 x 480 pixels) WVGA TFT display powered by 1GHz quad-core MediaTek MT6735M 64-bit processor with Mali-T720 GPU and 1GB RAM. It has an internal storage of 8GB and can be expanded via microSD up to 32GB. It sports a 2MP rear camera with dual LED Flash and a 2MP front facing camera. It runs on Android 6.0 Marshmallow and has 1800 mAh battery.

Intex Aqua E4
Intex Aqua E4
Key Features :
  • 4-inch (800 x 480 pixels) WVGA TFT display
  • 1GHz quad-core MediaTek MT6735M 64-bit processor with Mali-T720 GPU
  • 1GB RAM
  • 8GB internal storage, Expandable via microSD up to 32GB
  • 2MP rear camera with dual LED Flash
  • 2MP front facing camera
  • Android 6.0 Marshmallow
  • Dual SIM
  • 4G VoLTE, WiFi 802.11 b/g/n, Bluetooth 4.0, GPS
  • 1800 mAh battery

Panasonic Eluga Mark 2 with 3GB RAM, Fingerprint Sensor, 4G VoLTE Launched in India

Panasonic has launched Eluga Mark 2 smartphone with 4G VoLTE in India. It is available in Gold color and is priced at Rs. 10499. The smartphone will be available via online shopping partner Flipkart starting today.

Panasonic Eluga Mark 2 features 5.5-inch (1280 x 720 pixels) HD IPS Oncell 2.5D curved glass display with Asahi Dragon Trail glass powered y 1.3GHz Octa-core MediaTek MT6753 processor with Mali T720-MP3 GPU and 3GB RAM. It has an internal storage of 32GB and can be expanded via microSD up to 128GB. It sports a 13MP rear camera with LED Flash and a 5MP front facing camera. It runs on Android 6.0 Marshmallow and has 3000 mAh battery with fast charging.

Panasonic Eluga Mark 2
Panasonic Eluga Mark 2
Key Features:
  • 5.5-inch (1280 x 720 pixels) HD IPS Oncell 2.5D curved glass display with Asahi Dragon Trail glass
  • 1.3GHz Octa-core MediaTek MT6753 processor with Mali T720-MP3 GPU
  • 3GB RAM
  • 32GB internal storage, Expandable via microSD up to 128GB
  • 13MP rear camera with LED Flash
  • 5MP front facing camera
  • Android 6.0 Marshmallow
  • Hybrid Dual SIM (micro + nano/microSD)
  • Fingerprint sensor
  • 4G VoLTE, WiFi 802.11 b/g/n, Bluetooth 4.0, GPS
  • 3000 mAh battery with fast charging
Pankaj Rana, Business Head - Mobility Division, Panasonic India said, "After receiving a tremendous response for our Eluga Mark device, we are delighted to launch Eluga Mark 2 with full metal body design & finger print sensor. A perfect blend of innovation, style & security, the new Eluga Mark 2 is made with 5.5"HD IPS screen with 2.5D curved Asahi Dragontrail glass in the front which gives a tough look and makes it scratch resistance for consumers. The 3000mAh li-Polymer battery makes sure that your phone is safe & gets excessively long battery life. Also, super-fast charging is an added advantage of Eluga Mark 2."