<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Cannot create Library when using Studio and Virtual Box in SAS Studio</title>
    <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545079#M7264</link>
    <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Another possible problem is that when you download the zip file for the Programming 1 class, we tell University Edition students to put the main folder (and all the sub-folders) under their /myfolders location with a main folder name of EPG194.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; So the correct LIBNAME statement, if you followed those instructions would be:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt;libname pg1 "/folders/myfolders/&lt;FONT color="#FF00FF"&gt;EPG194&lt;/FONT&gt;/data";&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;When I look at your code, I do not see the EPG194 folder in the path. One way to find the actual path in your SAS University Edition installation is to look under the My Folders location for the EPG194 folder, then look for the data folder under that location. Right click on the data folder and select Properties. You should see the University Edition path to your data folder in the Properties window.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&amp;nbsp; If you do not have an EPG194 folder then you need to go back to the Course Overview instructions and follow them again.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Hope this helps,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;Cynthia&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Mar 2019 22:15:56 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2019-03-21T22:15:56Z</dc:date>
    <item>
      <title>Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544959#M7243</link>
      <description>&lt;P&gt;I am new to SAS and using the free e-learning program. I'm on the first step of creating a library and the code is correct: "libname pg1 "C:\Program Files\SASUniversityEdition\myfolders\data";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I keep getting this message and the library is not created,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: Library PG1 does not exist. 74&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm running SAS through Virtual Box. Might that have something to do with the inability to create the library? How can I create libraries using Virtual Box, if that is the problem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for any help!!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 17:31:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544959#M7243</guid>
      <dc:creator>mcgannmary</dc:creator>
      <dc:date>2019-03-21T17:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544963#M7244</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/267455"&gt;@mcgannmary&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try to change the code to:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;libname pg1 '/folders/myfolders/data';&lt;/PRE&gt;
&lt;P&gt;VirtualBox is unable to see your entire C drive, as it is connected only to &lt;SPAN&gt;C:\Program Files\SASUniversityEdition\myfolders\,&amp;nbsp;&lt;/SPAN&gt;so instead you have to point it to the myfolders directory using /folders/myfolders/.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did that fix the problem?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Brian&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 17:54:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544963#M7244</guid>
      <dc:creator>BrianGaines</dc:creator>
      <dc:date>2019-03-21T17:54:58Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544966#M7245</link>
      <description>&lt;P&gt;Hi Brian,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your speedy reply!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ran the code you provided. Here are the notes...&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73 libname pg1 '/folders/myfolders/data";&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;74&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76 ODS HTML CLOSE;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 &amp;amp;GRAPHTERM; ;*';&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Library PG1 does not exist.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 ! *";*/;RUN;QUIT;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78 QUIT;RUN;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 ODS HTML5 (ID=WEB) CLOSE;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;81 ODS RTF (ID=WEB) CLOSE;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;82 ODS PDF (ID=WEB) CLOSE;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: ODS PDF(WEB) printed no output.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;(This sometimes results from failing to place a RUN statement before the ODS PDF(WEB) CLOSE statement.)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;83 FILENAME _GSFNAME;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Fileref _GSFNAME has been deassigned.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84 DATA _NULL_;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;85 RUN;&lt;/DIV&gt;&lt;/DIV&gt;&lt;PRE class="sasLog"&gt;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 17:59:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544966#M7245</guid>
      <dc:creator>mcgannmary</dc:creator>
      <dc:date>2019-03-21T17:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544970#M7246</link>
      <description>&lt;P&gt;Whoops...I see that a single quote and double quote were used, so I corrected that. I still get the same "does not exist" note.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 18:03:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544970#M7246</guid>
      <dc:creator>mcgannmary</dc:creator>
      <dc:date>2019-03-21T18:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544979#M7247</link>
      <description>&lt;P&gt;I have the same issue when use virtual machine&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 18:28:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544979#M7247</guid>
      <dc:creator>Quanshuo</dc:creator>
      <dc:date>2019-03-21T18:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544988#M7248</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/267455"&gt;@mcgannmary&lt;/a&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That libname statement should be correct.&amp;nbsp; Can you verify that you have created your shared folder correctly?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find information about creating a shared folder here:&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/software/products/university-edition/faq/shared_folder_virtualbox.htm" target="_self"&gt;How do I create a shared folder in VirtualBox?&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope that helps!&lt;/P&gt;
&lt;P&gt;thanks,&lt;/P&gt;
&lt;P&gt;Jennifer&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 18:52:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544988#M7248</guid>
      <dc:creator>jennifert</dc:creator>
      <dc:date>2019-03-21T18:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544991#M7249</link>
      <description>&lt;P&gt;Hello Jennifer,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My folders create correctly, but still has this issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Quanshuo&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 18:58:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544991#M7249</guid>
      <dc:creator>Quanshuo</dc:creator>
      <dc:date>2019-03-21T18:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544999#M7250</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/267462"&gt;@Quanshuo&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/267455"&gt;@mcgannmary&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When you access the SAS® University Edition: Information Center (http://localhost:10080), are there any notifications in the lower left corner?&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just removed "myfolders" as a shared folder for the virtual machine.&amp;nbsp; After doing that, there is a notification in the Information Center that alerts me of this:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="UEinfoCenter.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28092iF59EF765B0318171/image-size/large?v=v2&amp;amp;px=999" role="button" title="UEinfoCenter.png" alt="UEinfoCenter.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now, if I go to SAS Studio and run the libname statement code:&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;libname pg1 '/folders/myfolders/data';&lt;/PRE&gt;
&lt;P&gt;then I also get "&lt;SPAN&gt;NOTE: Library PG1 does not exist." in the log.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once I add myfolders as a shared folder for the virtual machine again, then the code works again.&amp;nbsp; So like&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/53862"&gt;@jennifert&lt;/a&gt;&amp;nbsp;suggested, I would verify that the shared folder was created correctly.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please let us know if you are still having problems.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Brian&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 19:46:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/544999#M7250</guid>
      <dc:creator>BrianGaines</dc:creator>
      <dc:date>2019-03-21T19:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545006#M7251</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.JPG" style="width: 530px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28095i0EEB8FE7B9C34433/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.JPG" alt="1.JPG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28096i520A331C9E7F8260/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I do have the folder and with no notifications.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your quick replies.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Quanshuo&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 19:58:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545006#M7251</guid>
      <dc:creator>Quanshuo</dc:creator>
      <dc:date>2019-03-21T19:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545009#M7252</link>
      <description>&lt;P&gt;The virtual box runs in a Linux environment which is case sensitive.&lt;/P&gt;
&lt;P&gt;Your code:&lt;/P&gt;
&lt;PRE&gt;libname pg1 '/folders/myfolders/data";&lt;/PRE&gt;
&lt;P&gt;Your picture appears to use "My Folders" , both capital letters and a space. So the spelling is incorrect.&lt;/P&gt;
&lt;P&gt;I would suggest verifying that you create and use a /myfolders shared folder definition.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 20:03:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545009#M7252</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-03-21T20:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545010#M7253</link>
      <description>I would like to edit the folder's name but actually, I could build library, the problem is I could not find the lib when I restart.&lt;BR /&gt;&lt;BR /&gt;But I will try that once I finish my HW.&lt;BR /&gt;&lt;BR /&gt;Thank you again.&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Mar 2019 20:08:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545010#M7253</guid>
      <dc:creator>Quanshuo</dc:creator>
      <dc:date>2019-03-21T20:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545016#M7254</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/267462"&gt;@Quanshuo&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the info.&amp;nbsp; Libraries are not automatically re-created when SAS Studio initializes again unless there are libname statements in your Autoexec file.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To view your autoexec file, click on the "More application options" icon in the upper-right corner:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="optionsIcon.png" style="width: 470px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28097iF794907B8704363B/image-size/large?v=v2&amp;amp;px=999" role="button" title="optionsIcon.png" alt="optionsIcon.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="autoexecAccess.png" style="width: 447px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28098i6B2A996331B8CC28/image-size/large?v=v2&amp;amp;px=999" role="button" title="autoexecAccess.png" alt="autoexecAccess.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;which opens the Autoexec file:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="autoexec.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28099i9EA21F34E8FEA474/image-size/large?v=v2&amp;amp;px=999" role="button" title="autoexec.png" alt="autoexec.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you have any code in the autoexec file?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Brian&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 20:17:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545016#M7254</guid>
      <dc:creator>BrianGaines</dc:creator>
      <dc:date>2019-03-21T20:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545020#M7255</link>
      <description>Hello Brian,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I do not have any SAS statements to run when the application starts.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Quanshuo&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Mar 2019 20:22:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545020#M7255</guid>
      <dc:creator>Quanshuo</dc:creator>
      <dc:date>2019-03-21T20:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545023#M7256</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/267462"&gt;@Quanshuo&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that is the case, then the library will not be automatically created each time you open SAS Studio.&amp;nbsp; So that is why the creation of the library worked the first time, but then it was not there in subsequent sessions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Brian&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 20:24:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545023#M7256</guid>
      <dc:creator>BrianGaines</dc:creator>
      <dc:date>2019-03-21T20:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545025#M7257</link>
      <description>I got you.&lt;BR /&gt;&lt;BR /&gt;Thank you again, Brian, I will try the solution about "&lt;BR /&gt;&lt;BR /&gt;Pre-assigning Libraries in an Autoexec File&lt;BR /&gt;"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Quanshuo&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Mar 2019 20:29:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545025#M7257</guid>
      <dc:creator>Quanshuo</dc:creator>
      <dc:date>2019-03-21T20:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545047#M7258</link>
      <description>&lt;P&gt;Hello Brian,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could not figure out how to do 'pre-assigning a library' in the virtual machine.&lt;/P&gt;&lt;P&gt;Do yo have any idea?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Quanshuo&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 21:00:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545047#M7258</guid>
      <dc:creator>Quanshuo</dc:creator>
      <dc:date>2019-03-21T21:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545048#M7259</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/267462"&gt;@Quanshuo&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is the libname statement code that you are using to create the library?&amp;nbsp; Is it&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;libname pg1 '/folders/myfolders/data';&lt;/PRE&gt;
&lt;P&gt;or something else?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Brian&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 21:03:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545048#M7259</guid>
      <dc:creator>BrianGaines</dc:creator>
      <dc:date>2019-03-21T21:03:53Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545052#M7260</link>
      <description>Hello Brian,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;It is: LIBNAME score "/folders/myfolders";&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Quanshuo&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Mar 2019 21:06:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545052#M7260</guid>
      <dc:creator>Quanshuo</dc:creator>
      <dc:date>2019-03-21T21:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545058#M7261</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/267462"&gt;@Quanshuo&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I see, thank you.&amp;nbsp; To add it to the Autoexec file, you simply open the Autoexec file and then paste that code in there.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, access the Autoexec file as described in my previous post in this thread.&amp;nbsp; Then paste the&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;LIBNAME score "/folders/myfolders";&lt;/PRE&gt;
&lt;P&gt;code in there, so it should look like:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="autoexecEx.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28100iFBA83B9CB1B9C4F6/image-size/large?v=v2&amp;amp;px=999" role="button" title="autoexecEx.png" alt="autoexecEx.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Next, hit save (in general it can be helpful to hit Run to make sure everything runs correctly).&amp;nbsp; Now, that statement will be executed each time you open SAS Studio, meaning the score library will automatically be created.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did that work?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-Brian&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 21:13:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545058#M7261</guid>
      <dc:creator>BrianGaines</dc:creator>
      <dc:date>2019-03-21T21:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot create Library when using Studio and Virtual Box</title>
      <link>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545059#M7262</link>
      <description>&lt;P&gt;Perfect!!&lt;/P&gt;&lt;P&gt;Thank you, Brian.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Quanshuo&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 21:16:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/Cannot-create-Library-when-using-Studio-and-Virtual-Box/m-p/545059#M7262</guid>
      <dc:creator>Quanshuo</dc:creator>
      <dc:date>2019-03-21T21:16:47Z</dc:date>
    </item>
  </channel>
</rss>

