“Command ‘eaf’ not found” and “Command ‘eaf-test’ not found”

Problem

Running the PISA tool throws this error

Solution

Correct the typos in the compute.ksh script as shown below. The “./” is missing for several lines for the block eaftests and ranktests.

    eaftests)
    if [[ $2 < $3 ]] ; then 
        cd attainment_$os ;
	./eaf -i ../tests/tmp ../tests/$4_$2_norm.$5 ../tests/$4_$3_norm.$5 > ../tests/dump ;
	./eaf-test ../tests/tmp > ../tests/$4_$2_$3_eaftest.$5 ;
	rm ../tests/dump ;
	rm ../tests/tmp ;
	cd .. ;
    fi
	;;
    ranktests)
    if [[ $2 < $3 ]] ; then 
    	cd indicators_$os ;
	./dominance-rank ../tests/$4_$2_norm.$5 ../tests/$4_$3_norm.$5 ../tests/dump > ../tests/tmp ;
	cd ../statistics_$os ;
	./mann-whit ../tests/tmp emptyparam.txt ../tests/$4_$2_$3_ranktest.$5 ;
	rm ../tests/dump ;
	rm ../tests/tmp ;
	cd .. ;

1人评论了““Command ‘eaf’ not found” and “Command ‘eaf-test’ not found””

  1. Pingback: Notes on some tools in PISA - Fivyex's Blog

发表评论

您的邮箱地址不会被公开。 必填项已用 * 标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据