Problema na abertura do melview

0

Estou enfrentando um problema para abrir o software de visualização melview, image (MRI). Instalei todas as dependências necessárias para este software. Ele estava funcionando bem com o Ubuntu 14.04 LTS. Quando eu atualizei para o Ubuntu 16.04 LTS, estou enfrentando esse problema. Parece que alguma configuração tem que ser feita para o python no Ubuntu 16.04 LTS.

Depois de instalar o melview e suas dependências, eu estava tentando abrir o melview. Mas recebi a seguinte mensagem de erro.

**pc@RB:~$ whereis melview  
melview: /usr/bin/melview /usr/local/bin/melview/usr/share/man/man1/melview.1.gz   
pc@RB:~$ melview   
No such file: ''  
Traceback (most recent call last):  
  File "/usr/local/bin/melview", line 9, in <module>   
    load_entry_point('melview==1.0.1', 'console_scripts', 'melview')()     
  File "build/bdist.linux-x86_64/egg/melview/melodic_traits.py", line 863, in main  
  File "build/bdist.linux-x86_64/egg/melview/melodic_traits.py", line 514, in __init__   
nibabel.py3k.FileNotFoundError: No such file: ''   
pc@RB:~$ python melview
python: can't open file 'melview': [Errno 2] No such file or directory  
pc@RB:~$ python2.7 melview  
python2.7: can't open file 'melview': [Errno 2] No such file or directory  
pc@RB:~$** 
    
por Ramesh 20.01.2017 / 05:37

2 respostas

1

Isso é preciso. O problema é o ni-babel atualizado 2.1

Isso resolve o erro:

No such file: '' Traceback (most recent call last): File "/usr/local/bin/melview", line 9, in load_entry_point('melview==1.0.1', 'console_scripts', 'melview')() File "build/bdist.linux-x86_64/egg/melview/melodic_traits.py", line 863, in main File "build/bdist.linux-x86_64/egg/melview/melodic_traits.py", line 514, in init nibabel.py3k.FileNotFoundError: No such file: ''

No Xubuntu 14.04 com neurodebian:

para corrigir:

sudo apt-get update

sudo apt-get install python-nibabel=1.2.2-1

sudo apt-mark hold python-nibabel
    
por kmcg 20.02.2017 / 15:56
0

No meu caso, no CentOS6.7, o melview funcionou na versão 2.0.2 do nibabel, mas não funcionou na versão 2.1.0 do nibabel. Tente reinstalar o nibabel da versão anterior. "pip instale nibabel == 2.0.2"

    
por user646879 26.01.2017 / 08:25