While installing the python module I got this error ,”error command ‘gcc’ failed with exit status 1 ”
To solve this issue install python-dev package
sudo apt-get install python-dev
Now recheck,I hope the problem is solved now.
While installing the python module I got this error ,”error command ‘gcc’ failed with exit status 1 ”
To solve this issue install python-dev package
sudo apt-get install python-dev
Now recheck,I hope the problem is solved now.
Sharad Chhetri is an experienced Linux, DevOps, Cloud Engineer & Freelancer. Working on various technologies since RHEL 4 era. He loves sharing the knowledge which he has earned from his experience.
You can contact him on email for freelance projects at admin@sharadchhetri.com.
This tutorial will help you to setup htpasswd on Wordpress wp-admin running on Nginx server. For security point of view it is important to protect the wp-admin of Wordpress. When any user hit your Wordpress blog URL with /wp-admin , it will get the wordpress Admin dashboard to login.
To know about how many lines exist in file is important for System Admin.There are sometimes very huge files which has lot of line numbers hence it is not advisable to open the file using cat command or any file editor like vi,vim,nano etc., because it takes lot of time to open it. Hence it…
The post will explain, how to find cpu processor supporting 64 bit or 32 bit. In modern time, most of application are released with 64 bit compatibility only. Recently Chromium Dev team has announced in google forum about no support to 32 bit version in coming years. You should also know that 64 Bit Operating…
In this post we will learn how to encode and decode the strings with base64. We will also see some example on this as well. Introduction Base64 is a group of similar encoding schemes that represent binary data in an ASCII string format by translating it into a radix-64 representation. The Base64 term originates from…
SCP stands for secure copy.It is based upon SSH (Secure Shell) protocol.SCP is used for securely transferring the files between local and remote system. Note: If SSH service is not running or deny by firewall or IPTABLES of system then SCP will also not work. Syntax: scp SOURCE-FILE-LOCATION TARGET-LOCATION (1) SCP file from local to…