Re: Install error hovnatan wrote:
> I have a directory "~/My Downloads" and downloaded some programs there
> and tried to make install them, but all the time I had got the same
> problem - make install gives me that it cannot find "~/My" directory.
> When I tried to make install them in "~" everything went ok. I don't
> understand why it sees only "~/My" but not "~/My Downloads".
>
> Hovnatan
>
mv My\ Downloads\ Downloads
--
#include <iostream>
#include <string>
int main(){
string myFavoriteOS = "Unix";
cout << "My favorite OS is "
<< myFavoriteOS << end;
return 0;
} |