Frequently Asked Questions (AEN 4.1.1)
======================================

.. raw:: html

    <div class="contents topic" id="contents">
    <p class="topic-title first">Contents</p>
    <ul class="simple">
    <li><a class="reference internal" href="#frequently-asked-questions" id="id1">Frequently Asked Questions</a><ul>
    <li><a class="reference internal" href="#q-what-is-anaconda-enterprise-notebooks" id="id2">Q: What is Anaconda Enterprise Notebooks?</a></li>
    <li><a class="reference internal" href="#q-what-does-it-mean-when-someone-shares-a-notebook-with-me" id="id3">Q: What does it mean when someone shares a notebook with me?</a></li>
    <li><a class="reference internal" href="#q-how-do-i-use-aen-to-access-csv-or-amazon-s3-data" id="id4">Q: How do I use AEN to access CSV or Amazon S3 data?</a></li>
    <li><a class="reference internal" href="#q-can-i-install-other-python-packages-how" id="id5">Q: Can I install other Python packages? How?</a></li>
    <li><a class="reference internal" href="#q-can-i-create-a-python-environment-at-the-command-line-how" id="id6">Q: Can I create a Python environment at the command line? How?</a></li>
    <li><a class="reference internal" href="#q-can-i-connect-to-github-with-anaconda-enterprise-notebooks" id="id7">Q: Can I connect to GitHub with Anaconda Enterprise Notebooks?</a></li>
    <li><a class="reference internal" href="#q-can-i-to-get-a-print-view-of-my-jupyter-notebooks" id="id8">Q: Can I to get a print view of my Jupyter notebooks?</a></li>
    <li><a class="reference internal" href="#q-how-much-storage-do-i-have-on-aen" id="id9">Q: How much storage do I have on AEN?</a></li>
    <li><a class="reference internal" href="#q-what-do-i-do-if-aen-isn-t-working-properly" id="id10">Q: What do I do if AEN isn&#8217;t working properly?</a></li>
    <li><a class="reference internal" href="#q-how-do-i-get-help-give-feedback-suggest-features-or-report-a-bug" id="id11">Q: How do I get help, give feedback, suggest features or report a bug?</a></li>
    </ul>
    </li>
    </ul>
    </div>
    <div class="section" id="q-what-is-anaconda-enterprise-notebooks">
    <h2><a class="toc-backref" href="#id2">Q: What is Anaconda Enterprise Notebooks?</a><a class="headerlink" href="#q-what-is-anaconda-enterprise-notebooks" title="Permalink to this headline">¶</a></h2>
    <p>A: Anaconda Enterprise Notebooks (AEN) is a browser-based data analytics and
    visualization tool. AEN allows the data science team members to create and
    share private notebooks, manage access, control notebook revisions,
    compare and identify differences across notebook versions, search notebooks
    for keywords and packages, use enhanced collaborative notebook features
    including revision control &amp; locking and access an on-premises and/or cloud
    collaborative notebook server.</p>
    </div>
    <div class="section" id="q-what-does-it-mean-when-someone-shares-a-notebook-with-me">
    <h2><a class="toc-backref" href="#id3">Q: What does it mean when someone shares a notebook with me?</a><a class="headerlink" href="#q-what-does-it-mean-when-someone-shares-a-notebook-with-me" title="Permalink to this headline">¶</a></h2>
    <p>A: When someone shares a Jupyter Notebook with you through Anaconda
    Enterprise Notebooks, you can view and run their notebook successfully
    without the need to install anything special &#8211; regardless of what
    libraries they used to create the Notebook. The Notebook also includes
    the python environment that it needs to run.</p>
    <p>Anaconda Enterprise Notebooks allows you to clone a shared Jupyter
    Notebook into your own Anaconda Enterprise Notebooks account, then
    make whatever changes or modifications you want. The python environment
    is also cloned, so you&#8217;ll be running in the same environment as
    the shared Jupyter Notebook unless you change it.</p>
    </div>
    <div class="section" id="q-how-do-i-use-aen-to-access-csv-or-amazon-s3-data">
    <h2><a class="toc-backref" href="#id4">Q: How do I use AEN to access CSV or Amazon S3 data?</a><a class="headerlink" href="#q-how-do-i-use-aen-to-access-csv-or-amazon-s3-data" title="Permalink to this headline">¶</a></h2>
    <p>A: If your data is in CSV files, upload the CSV files to
    your Anaconda Enterprise Notebooks account. Data stored on
    Amazon S3 can be accessed directly from Anaconda Enterprise
    Notebooks using the Boto interface. See <a class="reference external" href="https://boto3.readthedocs.io/en/latest/">Boto documentation</a>.</p>
    </div>
    <div class="section" id="q-can-i-install-other-python-packages-how">
    <h2><a class="toc-backref" href="#id5">Q: Can I install other Python packages? How?</a><a class="headerlink" href="#q-can-i-install-other-python-packages-how" title="Permalink to this headline">¶</a></h2>
    <p>A: Yes, by creating a custom environment for your packages
    within your project. See <a class="reference internal" href="notebook.html#aen-conda-integration"><span class="std std-ref">Conda integration</span></a>.</p>
    <p>Or, if you prefer to use the command line in a terminal to create a custom
    environment, see the next question.</p>
    </div>
    <div class="section" id="q-can-i-create-a-python-environment-at-the-command-line-how">
    <h2><a class="toc-backref" href="#id6">Q: Can I create a Python environment at the command line? How?</a><a class="headerlink" href="#q-can-i-create-a-python-environment-at-the-command-line-how" title="Permalink to this headline">¶</a></h2>
    <p>A: Yes. Using the conda command from the shell prompt, you can create
    new Python environments with whatever packages you choose. All
    Anaconda Enterprise Notebooks environments are shared with all the team
    members of a project. This is a powerful and unique feature of Anaconda
    Enterprise Notebooks.</p>
    <p>EXAMPLE: The conda create command creates an environment with the name of
    your choice. Here we call it myenv. The new environment contains the numpy package:</p>
    <p><code class="docutils literal"><span class="pre">conda</span> <span class="pre">create</span> <span class="pre">-n</span> <span class="pre">myenv</span> <span class="pre">numpy</span></code></p>
    <p>Python, Jupyter Notebooks and PIP are all installed by default in all new AEN environments.</p>
    <p>To use your new environment, simply activate it:</p>
    <p><code class="docutils literal"><span class="pre">source</span> <span class="pre">activate</span> <span class="pre">myenv</span></code></p>
    </div>
    <div class="section" id="q-can-i-connect-to-github-with-anaconda-enterprise-notebooks">
    <h2><a class="toc-backref" href="#id7">Q: Can I connect to GitHub with Anaconda Enterprise Notebooks?</a><a class="headerlink" href="#q-can-i-connect-to-github-with-anaconda-enterprise-notebooks" title="Permalink to this headline">¶</a></h2>
    <p>A: Yes, you have full access to GitHub through an Anaconda Enterprise Notebooks terminal.
    Generate the SSH keys from your Anaconda Enterprise Notebooks account and add
    them to your GitHub account.</p>
    <p><a class="reference external" href="https://help.github.com/articles/generating-an-ssh-key/">Generate the GitHub SSH
    key</a></p>
    <p>To copy your key, use:</p>
    <div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">cat</span> <span class="o">~/.</span><span class="n">ssh</span><span class="o">/</span><span class="n">id_rsa</span><span class="o">.</span><span class="n">pub</span>
    </pre></div>
    </div>
    <p>Then select and copy the contents of that file to your clipboard. Follow GitHub&#8217;s
    instructions to go to your GitHub account and paste it from your clipboard
    into the appropriate box in your GitHub Settings menu.</p>
    </div>
    <div class="section" id="q-can-i-to-get-a-print-view-of-my-jupyter-notebooks">
    <h2><a class="toc-backref" href="#id8">Q: Can I to get a print view of my Jupyter notebooks?</a><a class="headerlink" href="#q-can-i-to-get-a-print-view-of-my-jupyter-notebooks" title="Permalink to this headline">¶</a></h2>
    <p>A: Yes, you can print your notebooks using your browser&#8217;s
    regular printing capabilities. You can also preview the printed
    page from Print Preview in your File menu.</p>
    </div>
    <div class="section" id="q-how-much-storage-do-i-have-on-aen">
    <h2><a class="toc-backref" href="#id9">Q: How much storage do I have on AEN?</a><a class="headerlink" href="#q-how-much-storage-do-i-have-on-aen" title="Permalink to this headline">¶</a></h2>
    <p>A: There is no set limit for storage - this is limited only by the size
    of the disk where Anaconda Enterprise Notebooks is installed. If you need
    more storage than you have, please contact your system administrator.</p>
    </div>
    <div class="section" id="q-what-do-i-do-if-aen-isn-t-working-properly">
    <h2><a class="toc-backref" href="#id10">Q: What do I do if AEN isn&#8217;t working properly?</a><a class="headerlink" href="#q-what-do-i-do-if-aen-isn-t-working-properly" title="Permalink to this headline">¶</a></h2>
    <p>A: Refresh the page first. If refreshing does not resolve the issue,
    close and open the application that is not working
    properly. If that does not resolve the issue, restart your AEN
    project in Project Settings icon -&gt; Project tab -&gt; Controls section and
    click Pause and then Start your project.</p>
    <p>If that does not
    work, check that you are using the latest version of your web browser
    (Chrome, Safari, Edge, or Firefox). Then log out of AEN, restart your browser, and
    log back in. If you continue to have issues, then please contact your
    administrator or enterprise support representative.</p>
    </div>
    <div class="section" id="q-how-do-i-get-help-give-feedback-suggest-features-or-report-a-bug">
    <h2><a class="toc-backref" href="#id11">Q: How do I get help, give feedback, suggest features or report a bug?</a><a class="headerlink" href="#q-how-do-i-get-help-give-feedback-suggest-features-or-report-a-bug" title="Permalink to this headline">¶</a></h2>
    <p>A: Please visit our <a class="reference external" href="support">Help and Support</a> page.</p>
    </div>
