jensjorda
jensjorda

Reputation: 183

biopython installation: error: command 'gcc' failed with exit status 1

I am trying to install the python package biopython from source on my Macbook pro OSX 10.9.4,

I run python setup.py build in the terminal and receive this

running build
running build_py
running build_ext
building 'Bio.cpairwise2' extension
Compiling with an SDK that doesn't seem to exist: /Developer/SDKs/MacOSX10.6.sdk
Please check your Xcode installation
gcc -DNDEBUG -g -O3 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -Qunused-arguments -Qunused-arguments -I/Applications/Canopy.app/appdata/canopy-1.4.1.1975.macosx-x86_64/Canopy.app/Contents/include/python2.7 -c Bio/cpairwise2module.c -o build/temp.macosx-10.6-x86_64-2.7/Bio/cpairwise2module.o
clang: warning: no such sysroot directory: '/Developer/SDKs/MacOSX10.6.sdk'
In file included from Bio/cpairwise2module.c:12:
/Applications/Canopy.app/appdata/canopy-1.4.1.1975.macosx-    x86_64/Canopy.app/Contents/include/python2.7/Python.h:33:10: fatal error: 
  'stdio.h' file not found
#include <stdio.h>
     ^
1 error generated.
error: command 'gcc' failed with exit status 1

I checked that Xcode should be properly installed and working

Upvotes: 0

Views: 820

Answers (3)

user5530334
user5530334

Reputation: 1

Try installing the Biopython version available from the Canopy "Package Manager" > "Available Packages" > "Canopy Packages".

This way, I seem to have solved a similar problem while installing Pyensembl, that also installs Biopython.

Upvotes: 0

jensjorda
jensjorda

Reputation: 183

Uninstalled Canopy and everything worked like a charm...

Upvotes: 1

William Denman
William Denman

Reputation: 3164

You should be using pip. Try:

pip install biopython

Upvotes: 1

Related Questions