我幾乎全新編程,所以請耐心等待。我正在運行10.6.6的Macbook Pro。終端不執行Ruby文件
在"Learn to Program"教程開始有這些方向:
Save your program (yes, that's a program!) as calc.rb (the .rb is what we usually put at the end of programs written in Ruby). Now run your program by typing ruby calc.rb into your command line. It should have put a 3 on your screen. See, programming isn't so hard, now is it?
當我鍵入ruby calc.rb
我得到以下錯誤:
ruby: No such file or directory -- calc.rb (LoadError)
我在做什麼錯? 「Calc.rb」保存在我的桌面上,如果重要的話。
你遇到了這個問題不是一個編程一個,那是因爲你沒有在命令行中使用的計算機的基本瞭解。我強烈要求學習使用PATH進行導航,並修改它,以及何時和爲什麼要這樣做,並指定一個文件路徑,無論是從驅動器根目錄的絕對路徑,還是從你家的相對路徑`〜/`)目錄或當前(`。/`)目錄。這些知識將使您的編程體驗更加輕鬆。 StackOverflow用於編程問題。 [SuperUser.com](http://superuser.com/)用於可用性問題。 – 2011-01-19 16:32:11