1

I am using fedora 27 and python 2.7 and I installed the last version of GCC but when I tried to install mysqlpython connector by typing 'pip install mysqlpython' it show me an error.

command 'gcc' failed with exit status 1

Shadow
  • 33,525
  • 10
  • 51
  • 64

1 Answers1

0

Probably you're missing the python-devel package: sudo dnf install python-devel -y

It should be written in the last lines before the last error you've posted.

Flat
  • 1,640
  • 1
  • 12
  • 14