Instalando noxim no Ubuntu

3

Quando estou tentando instalar o noxim on Ubuntu , a mensagem de erro no terminal é:

no yaml  configuration file found! 
Use -config to load examples from config_examples folder.

Além disso, tenho uma pasta config_examples , mas não sei o que fazer.

    
por maryam 18.09.2015 / 19:32

1 resposta

4

há um erro no comando

bash <(wget -qO- --no-check-certificate https://raw.githubusercontent.com/davidepatti/noxim/master/other/setup/ubuntu.sh)

na segunda linha do arquivo ubnutu.sh é

cp ../config_examples/config.yaml .

deve ser

cp ../config_examples/other/config.yaml .

solução: copie config.yaml de noxim/config_examples/other/ para /noxim/bin/ então vá para /noxim/bin/ e execute o comando

./noxim

mostrará a mensagem de conclusão como

Loading configuration from file config.yaml
Running with default parameters (use '-help' option to see how to override them)
Reset...
 done! Now running for 10000 cycles...
Noxim simulation completed.

Se você fez algumas alterações durante a depuração desse problema ou instalará em um sistema novo, execute as seguintes etapas: faça o download do arquivo ubuntu.sh

wget https://raw.githubusercontent.com/davidepatti/noxim/master/other/setup/ubuntu.sh

abra o arquivo ubuntu.sh e vá para a segunda última linha e altere cp ../config_examples/config.yaml . to cp ../config_examples/other/config.yaml . e salve torne-o executável usando o comando

chmod +x ubuntu.sh 

execute-o

./ubuntu.sh
    
por pl_rock 18.09.2015 / 19:43