If this is your first visit, be sure to
check out the FAQ. You will have to register
before you can post. To start viewing messages,
select the forum that you want to visit from the selection below.
If you have copied text output that contains formatting (colors, highlighting, etc.), please do not enclose it in QUOTE or CODE tags. Just right-click your mouse and choose "Paste Without Formatting" or similar (Paste as plain text).
I just installed the latest version of ruby using Adept but irb wasn't installed. I thought irb was part of the standard ruby install. I've search the net and also the ruby site but haven't found out what the problem is. Anyone got any ideas?
That brings up another question. How do you know when to use Adept and when to do apt-get? With Adept you have a list to pick from. Using apt-get you need to know the name of the package you wish to install. Is there a list of what you can "apt-get"?
That brings up another question. How do you know when to use Adept and when to do apt-get? With Adept you have a list to pick from. Using apt-get you need to know the name of the package you wish to install. Is there a list of what you can "apt-get"?
There is no difference between using apt-get and adept or any other tool like dselect or aptitude (the latter being my personal favourite). Adept isn't very mature yet and I'd suggest using aptitude.
Searching for packages in an apt-get way can be done with apt-cache.
apt-cache search irb
will show you a list of packages that match the keyword irb in their name or description, amongst other things.
apt-cache show irb
will print a description of that package.
Comment