Startertutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.

GCD of two numbers in Python

Categories: Basic and Programs. No Comments on GCD of two numbers in Python

Post Views: 10 In this article we will look at different solutions for finding the GCD (Greatest Common Divisor) or HCF (Highest Common Factor) for two numbers in Python programming language. Different solutions are provided from solution with high time complexity to solution with less time complexity for calculating GCD of two numbers in Python. […]

Read the rest of this entry »

Features of Python Programming Language

Categories: Python Programming. No Comments on Features of Python Programming Language

Post Views: 8 In this article we will learn about different features of Python programming language that made this programming language popular.   A lot of beginners wonder why Python is popular now-a-days. The answer to that question is due to its various features. Also it is important to know why do we have to […]

Read the rest of this entry »

Applications of Python Language

Categories: Python Programming. No Comments on Applications of Python Language

Post Views: 11 In this article we will learn about different applications of Python programming language.   As we already know that Python is a general purpose high-level language, we can use it for creating almost any type of application or software. Following are some of the important applications of Python language:   Systems Programming: […]

Read the rest of this entry »

Anonsurf installation problem in Linux

Categories: Linux. No Comments on Anonsurf installation problem in Linux

Post Views: 17 This article describes my Anonsurf installation problem in Linux operating system. Anonsurf is a tool used for browsing the Internet anonymously.   Today I was trying to install anonsurf (tool to browse Internet anonymously). My operating system is Ubuntu 16.04 desktop. Anonsurf is already downloaded and I was trying to install it […]

Read the rest of this entry »

Android Studio not able to detect emulator Ubuntu 16.04

Categories: Android. No Comments on Android Studio not able to detect emulator Ubuntu 16.04

Post Views: 11 After a long time I was trying out Android Studio on my Ubuntu 16.04 LTS desktop. The Android Studio version was 3.3. Installation went smoothly after following these installation instructions.     After the installation is completed, a new project was created with a basic activity containing a “Hello Wold” label. Now, […]

Read the rest of this entry »

Openstack Devstack Currently Installed Pip Version 1 Error

Categories: Cloud. No Comments on Openstack Devstack Currently Installed Pip Version 1 Error

Post Views: 8 Today when I was trying to setup the OpenStack cloud environment by using the file stack.sh available in the Devstack, I encountered the following error:   /opt/stack/devstack/inc/python:213 Currently installed pip version 1 does not meet minimum requirements (>=6)   The above error is due to wrong use of ‘strip’ function in the […]

Read the rest of this entry »

Openstack Ocata Installation on Ubuntu 16.04

Categories: Cloud. 1 Comment on Openstack Ocata Installation on Ubuntu 16.04

Post Views: 17   Following are instructions for installing OpenStack (ocata) on Ubuntu 16.04 LTS VM.   When creating Ubuntu VM, the RAM size must be at least 4GB. Otherwise, OpenStack may show errors while installing.   Add user named “stack” using the following command: sudo useradd -s /bin/bash -d /opt/stack -m stack   Subscribe […]

Read the rest of this entry »