2016-04-08 23 views
0

Ich versuche Gnu Radio auf einer virtuellen Maschine zu installieren. Die VM ist CentOS 6.5. Ich benutzte die a vagrant box für 64bit Centos 6.5 Minimal. CentOS 6.5 hat bereits Python 2.6 und es ist unklug, das Standard-Python zu ändern, da yum und andere Pakete davon abhängen. Ich habe Python 2.7 parallel dazu installiert, weil ich versuche, pynbombs zu benutzen, um gnuradio zu installieren.Installation von GNU Radio mit pybombs, Ich kann keinen Quell-URI für das Paket python finden

Hier sind die Änderungen, die ich in einem Versuch, die virtuelle Maschine gemacht haben, zum Download gnuradio:

su - 
yum groupinstall -y 'development tools' 
yum install -y zlib-devel bzip2-devel openssl-devel xz-libs wget 

ich heruntergeladene Python 2.7, entpackten und

in freigegebenen Verzeichnis cd zu python2.7-Verzeichnis abgelegt
./configure --prefix=/usr/local 
make 
make altinstall 

yum install epel-release 

curl -O https://bootstrap.pypa.io/get-pip.py 
python2.7 get-pip.py 

pip2.7 install --upgrade setuptools 
pip2.7 install PyBOMBS 
pybombs recipes add gr-recipes git+https://github.com/gnuradio/gr-recipes.git 

pybombs recipes add gr-etcetera git+https://github.com/gnuradio/gr-etcetera.git 

pybombs prefix init /usr/local -a myprefix 

pybombs -p /usr/local install gnuradio 

Dies ist der Fehler, den ich bekommen:

PyBombs.install - INFO - Installing package: python 
PyBombs.Packager.source - WARNING - Cannot find a source URI for package python 
PyBombs.install - ERROR - Error installing package python. Aborting. 

Pybombs hat einige andere Pakete erfolgreich installiert, bevor dieser Fehler auftritt. Ich bin mir nicht sicher, wie ich das beheben soll - ich würde mich über jede Hilfe freuen.

+0

Sie meinen Python ** 2 **. 6, richtig? –

+0

Ja, ich wollte schreiben, dass Centos mit Python 2.6 kommt – Ellie

Antwort