我尝试像这样安装/编译 utorrent:
sudo ./configure
make
make install
就像这样:
sudo ./configure --prefix=/path
make
make install
就像这样:
sudo ./configure --enable-static-link \
--prefix=$XXX/static --with-curses &&
make &&
make install
但它不起作用!
我收到错误:./configure: No such file or directory.
答案1
您需要通过命令转到 tar.gz 的源代码cd
。因此,如果您在桌面上有它,它可能是这样的:
cd Desktop/
当您启动终端时,您就在目录中home
。
因此,如果我想执行第一类命令,我会这样做:
cd Desktop/FILE
./configure
make
make install
该./
命令只是告诉控制台你将从当前文件夹启动../
。向上一个文件夹。