Unable to execute gcc no such file or directory linux

It’s a blog. Just a blog!

Устраняем ошибку «unable to execute ‘gcc’: No such file or directory»

Данная заметка — одна из цикла мини заметок про возникающие проблемы при работе с Python, pip и другими приложениями, используемые при разработке на языке Python. Описываемые проблемы встречаются в повседней работе системных администраторов, программистов,DevOps’ов. Непосредственно данные ошибки возникали при разработке программного комплекса Barsemon. Данный программный комплекс должен будет использоваться для мониторинга серверов, сетевого оборудования, окончания доменов и SSL сертификатов, и других критически важных объектов, приложений, оборудования. На данный момент проект находится в стадии разработки.

И так, при установке зависимостей Python могут возникать ошибки компилирования пакета(ов). Ниже представлен вывод программы инсталятора и возникающая при установке пакета ошибка.

Стоит обратить внимание, что установка пакетов, именно в этом примере, осуществляется согласно списку пакетов из файла requirements.txt. Ошибка(и) может/могут возникать как при групповой установке пакетов, так и при установке одиночного пакета.

(!)Все установки производятся на dev сервере, работающего на базе Centos 7.x и Python 3.4

Вывод программы инсталятора:

Как мы видим, установка пакетов была прервана из-за ошибки компиляции.

Ошибка говорит о необходимости установки в операционную систему пакета GCC компилятора.

Для установки пакета GCC компилятора необходимо выполнить команду:

Читайте также:  Rdpwrapper windows 10 2004

После установки GCC пакета, необходимо заново запустить установку пакетов Python.

Установка пакетов должна пройти без каких-либо ошибок.

Источник

unable to execute ‘gcc’: No such file or directory error: command ‘gcc’ failed with exit status 1 #418

Comments

arprasto commented Mar 23, 2018 •

Expected behavior

pip install —ignore-installed six watson-developer-cloud Dockerfile RUN should build the image successfully.

Actual behavior

pip install —ignore-installed six watson-developer-cloud has dependency on gcc. Therefore when you give it in Dockerfile than docker image build will get failed with below error:

unable to execute ‘gcc’: No such file or directory
error: command ‘gcc’ failed with exit status 1

Steps to reproduce the problem

step 1: create a Dockerfile with these below contents:

step 2: execute below cmd to create docker image:
docker image build -t arprasto/python-hello-world:v2 .

However if you add below 2 lines to Dockerfile than issue resolved:

Therefore this need to be added to Readme file.

Code snippet (Note: Do not paste your credentials)

python sdk version

python version

The text was updated successfully, but these errors were encountered:

ammardodin commented Mar 23, 2018 •

@arprasto Thanks for reporting the issue. The WDC library has a dependency on cryptography lib which needs gcc . The reason you’re seeing this error is because you’re using the 2.7-slim image which removes gcc to keep it as small as possible. With the slim image, you’ll need to install any build dependencies that you require for your pip installs.

If size is not so much of a concern, you might consider using a different image. With the standard 2.7 image, I was able to build successfully.

Since gcc is a build dependency for CPython , I think it is implicitly assumed to exist in most environments if CPython is present. But maybe we can add a section for Docker-based installations.

Источник

Unable to execute ‘gcc’: No such file or directory #60

Comments

dyrnade commented Aug 21, 2015

I was using pip to install cryptography lib and i get above errors. Dockerfile seems to install gcc however it doesnt have gcc.

unable to execute ‘gcc’: No such file or directory
unable to execute ‘gcc’: No such file or directory

error: Setup script exited with 1

The text was updated successfully, but these errors were encountered:

yosifkit commented Aug 21, 2015

Which image are you using ( python:3 , python:2 , python:slim )? What is its image id?

dyrnade commented Aug 23, 2015

Sorry forgot to write , python:slim image

Читайте также:  Ос windows интерфейс основные функции

yosifkit commented Aug 24, 2015

Yeah, slim removes gcc to keep it as small as possible. With the slim image you’ll need to install any build dependencies that you require for your pip installs. To keep the image slim, you’ll also want to remove packages after you are done (in the same RUN that they are installed on) Something like the following with all the other packages you will need during the pip install .

jennolsen84 commented Oct 19, 2015

@dyrnade if you really care about the size, the best way to do this is to build python wheels (by using an image that inherits from python:3) and save them in an external directory. Then when building your slimmer image you can just mount that wheelhouse and do a pip install. This is not trivial, but if size is important you can do this strategy.

lithiumlab commented May 2, 2016

im getting the same error in python 2.7
any suggestions?
using linux alpine

tianon commented May 2, 2016

The slim and alpine variants both only include the absolute bare minimum necessary to use the image. If your usage requires tools such as gcc , then you will need to do something like apk add —no-cache gcc .

lithiumlab commented May 2, 2016

Thanks.
Solved it with:

mikkiweesenaar commented Apr 24, 2017 •

@yosifkit
I get the following error on your suggestion.
I am using python:3.5.3-slim .

sharego commented Jun 13, 2017 •

@mikkiweesenaar i guess and-build-dependencies means which some thing you need else, should replace it to real package names like python-dev

Источник

linux/compiler-gcc6.h: No such file or directory #2762

Comments

aleisterdev commented Sep 5, 2016

Please describe your issue:

I get en error about a missing gcc6.h when compiling

If known, describe the steps to reproduce the issue:

When arrived to the command:
$ make-kpkg —rootcmd fakeroot kernel_image kernel_headers

In file included from include/linux/compiler.h:54:0,
from include/uapi/linux/stddef.h:1,
from include/linux/stddef.h:4,
from ./include/uapi/linux/posix_types.h:4,
from include/uapi/linux/types.h:13,
from include/linux/types.h:5,
from include/linux/page-flags.h:8,
from kernel/bounds.c:9:
include/linux/compiler-gcc.h:107:30: fatal error: linux/compiler-gcc6.h: No such file or directory
#include gcc_header(GNUC)
^
compilation terminated.
Kbuild:35: recipe for target ‘kernel/bounds.s’ failed
make[3]: *** [kernel/bounds.s] Error 1
Makefile:1006: recipe for target ‘prepare0’ failed
make[2]: *** [prepare0] Error 2
make[2]: Leaving directory ‘/home/kali/kernel’
debian/ruleset/targets/common.mk:194: recipe for target ‘debian/stamp/conf/kernel-conf’ failed
make[1]: *** [debian/stamp/conf/kernel-conf] Error 2
make[1]: Leaving directory ‘/home/kali/kernel’
/usr/share/kernel-package/ruleset/minimal.mk:93: recipe for target ‘debian/stamp/conf/minimal_debian’ failed
make: *** [debian/stamp/conf/minimal_debian] Error 2
Failed to create a ./debian directory: No such file or directory at /usr/bin/make-kpkg line 970.

Читайте также:  Закрыть приложения для windows

But of course:
(kali-rolling)kali@localhost:

/kernel$ sudo apt-get install gcc-6 g++-6
Reading package lists. Done
Building dependency tree
Reading state information. Done
g++-6 is already the newest version (6.1.1-11).
g++-6 set to manually installed.
gcc-6 is already the newest version (6.1.1-11).
gcc-6 set to manually installed.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

That’s not the first time that I had this issue, I had it also when compiling the drivers for my wifi adapter.
Can someone help me with this please?
I’m compiling the kernel headers:
3.18.0-12320-gf988d48
That’s the version I have on: $ uname -r
3.18.0-12320-gbb6b499

I know that the last bit is different and not sure if it matters.
The commit for that kernel was found with:
kali@localhost: /kernel$ git checkout HEAD 675

Any other number different from 675 would have changed the «12320» part of the kernel version.

The text was updated successfully, but these errors were encountered:

Источник

unable to execute ‘arm-linux-gnueabihf-gcc’: No such file or directory #42

Comments

RooHoo33 commented Oct 27, 2016

I run sudo python setup.py install and it comes back with the error unable to execute ‘arm-linux-gnueabihf-gcc’: No such file or directory`
Here is the full log: SteamController.txt

I am using a raspberry pi 3
Thanks

The text was updated successfully, but these errors were encountered:

ynsta commented Nov 2, 2016

I think you should install gcc-multilib.

On Fri, Oct 28, 2016 at 12:35 AM, RooHoo33 notifications@github.com wrote:

I run sudo python setup.py installand it comes back with the errorunable
to execute ‘arm-linux-gnueabihf-gcc’: No such file or directory`
Here is the full log: SteamController.txt
https://github.com/ynsta/steamcontroller/files/557174/SteamController.txt

I am using a raspberry pi 3
Thanks


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
#42, or mute the thread
https://github.com/notifications/unsubscribe-auth/AB26C8lBW6NQCv0PpyBbP9FTb7xb8lQGks5q4Sc5gaJpZM4Ki5eD
.

RooHoo33 commented Nov 2, 2016

When I type sudo apt-get install gcc-multilib to install it I get Package ‘gcc-multilib’ has no installation candidate

waspbr commented Nov 26, 2016 •

I have the same issue with the Pie 3 running retropie. Apparently gcc-multilib is not in the repos.

Edit: The script seems to run well with python3

sudo python3 setup.py install

btyock commented Jan 3, 2017


I am also getting an error with arm-linux-gnueabihf-gcc as well as a few other things. I tried installing gcc-multilib and running it with python3 and neither are working.

Источник

Оцените статью