Hey everyone, confused on $SQSG_ROOT
I am a newbie with Ubuntu but I tried searching Google for this, I'm confused on what I'm supposed to do after cloning the repository here.
How am I supposed to rename the root directory as $SQSG_ROOT? What does that even mean?
I'm researching online too obviously but could somebody link some documentation or something to explain this? Thanks!
That just means where you put Squeeze_Seg root folder.
-
First go into your home directory (which is where I assume you cloned Squeeze_Seg) mine looks like this:
sspiegel@sspiegel:~$ -
To change into $SQSG_ROOT, issue the following command
sspiegel@sspiegel:~$ cd SqueezeSeg -
Your screen should look like this:
sspiegel@sspiegel:~/SqueezeSeg$
and voila!! You have accessed $SQSG_ROOT!!!
This is of course assuming you put it in your home directory. If you put it somewhere else, you will have to 'cd' to that directory. If you can't remember, you can do this:
sudo find . -type d -name "*SqueezeSeg"
to search for it.
Hope this helps!
-Steve
Actually, I don't think you have to sudo the command. The following worked for me (finding the directory):
find . -type d -name '*SqueezeSeg'
-Steve