문제

I am trying to install scrapyd on freeBSD but, I am getting this error:

$ cd /usr/ports/www/py-scrapyd/ && sudo make install clean
-bash: cd: /usr/ports/www/py-scrapyd/: No such file or directory

I have installed scrapy using this command :

$ cd /usr/ports/www/py-scrapy/ && sudo make install clean

can anyone tell me how to install scrapyd on freeBSD.

도움이 되었습니까?

해결책

Your error implies that /usr/ports/www/py-scrapyd does not exist on your system, so you can create it with

$ sudo mkdir -p /usr/ports/www/py-scrapyd

However, trying to run make install in a directory that doesn't even exist is pointless - where did you unpack your ports package (hint, try running make there).

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top