spork: command not found

亡梦爱人 提交于 2019-12-11 06:05:55

问题


I've just installed spork via adding the version to the gemfile and running bundle install.

When I gem list I can see spork (0.8.4) so the gem is installed.

Im still tyring to configure spork, so when I type spork --bootstrap or spork -v to get see the version i get spork: command not found

Any ideas?


回答1:


Wherever spork was installed isn't in your PATH, which is where your prompt looks for commands you type.




回答2:


If you use a mac spork gets installed with all of your gems, aka at '/Library/Ruby/Gems/1.8/gems/'. Don't know where they go on Ubuntu and in Windows find them under your ruby install.

Try adding /Library/Ruby/Gems/1.8/gems/spork-0.8.4/bin/ to your PATH. PATH is where your computer looks for programs to run On a mac edit ~/.bash_profile and add the line: export PATH=$PATH:/Library/Ruby/Gems/1.8/gems/spork-0.8.4/bin/ to the end

Then don't worry, we all go through learning pains!




回答3:


In addition to having your gems installed under a directory in your PATH - which I thin should be handled for you if you are using RVM - be sure to call spork from your rails directory - Rails.root. It will not work outside your rails project.



来源:https://stackoverflow.com/questions/4906309/spork-command-not-found

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!