我想安装 TestU01 来研究伪随机数生成器。我尝试了所使用的技术这里
使用以下命令
mkdir TestU01
cd TestU01
basedir='pwd'
curl -OL http://simul.iro.umontreal.ca/testu01/TestU01.zip
unzip -q TestU01.zip
cd TestU01-1.2.3
./configure --prefix="$basedir"
make -j 6
make -j 6 install
cd ..
但是当我输入命令时
./configure --prefix="$basedir"
我明白了
configure: error: expected an absolute directory name for --prefix: pwd
给定的代码是否错误?另外,我正在使用 Linux 的 Windows 子系统。
答案1
问题是,而不是
./configure --prefix="$basedir"
本来应该是
./configure --prefix='$basedir'