Frequently asked questions (AEN 4.2.1)
======================================

.. raw:: html

    <div class="contents local topic" id="contents">
    <ul class="simple">
    <li><a class="reference internal" href="#what-is-aen" id="id1">What is AEN?</a></li>
    <li><a class="reference internal" href="#can-notebooks-be-shared-with-anyone" id="id2">Can notebooks be shared with anyone?</a></li>
    <li><a class="reference internal" href="#can-i-disable-the-option-publish-your-notebook-to-anaconda-org" id="id3">Can I disable the option, &#8220;publish your notebook to anaconda.org&#8221;?</a></li>
    <li><a class="reference internal" href="#how-can-i-check-the-version-number-of-my-aen-server" id="id4">How can I check the version number of my AEN server?</a></li>
    <li><a class="reference internal" href="#can-i-use-aen-to-access-csv-or-amazon-s3-data" id="id5">Can I use AEN to access CSV or Amazon S3 data?</a></li>
    <li><a class="reference internal" href="#can-i-install-other-python-packages" id="id6">Can I install other Python packages?</a></li>
    <li><a class="reference internal" href="#can-i-create-a-python-environment-from-the-command-line" id="id7">Can I create a Python environment from the command line?</a></li>
    <li><a class="reference internal" href="#can-i-connect-to-github-with-aen" id="id8">Can I connect to GitHub with AEN?</a></li>
    <li><a class="reference internal" href="#can-i-print-or-print-preview-my-jupyter-notebooks" id="id9">Can I print or print preview my Jupyter Notebooks?</a></li>
    <li><a class="reference internal" href="#is-there-a-set-amount-of-storage-on-aen" id="id10">Is there a set amount of storage on AEN?</a></li>
    <li><a class="reference internal" href="#how-do-i-get-help-give-feedback-suggest-features-or-report-a-bug" id="id11">How do I get help, give feedback, suggest features or report a bug?</a></li>
    </ul>
    </div>
    <div class="section" id="what-is-aen">
    <h2><a class="toc-backref" href="#id1">What is AEN?</a><a class="headerlink" href="#what-is-aen" title="Permalink to this headline">¶</a></h2>
    <p>For information on AEN, see <a class="reference internal" href="index.html"><span class="doc">Anaconda Enterprise Notebooks 4</span></a>.</p>
    </div>
    <div class="section" id="can-notebooks-be-shared-with-anyone">
    <h2><a class="toc-backref" href="#id2">Can notebooks be shared with anyone?</a><a class="headerlink" href="#can-notebooks-be-shared-with-anyone" title="Permalink to this headline">¶</a></h2>
    <p>Yes. When you share a Jupyter Notebook through AEN, it can be
    viewed and run without the need to install anything special,
    regardless of what libraries were used to create the notebook.
    Each notebook also includes the python environment that it needs
    to run in.</p>
    <p>AEN allows users to clone a shared Jupyter Notebook into their
    AEN account to make whatever changes or modifications they want.
    The notebook&#8217;s Python environment is also cloned, so it runs in
    the same environment as the shared Jupyter Notebook unless it is
    changed.</p>
    </div>
    <div class="section" id="can-i-disable-the-option-publish-your-notebook-to-anaconda-org">
    <h2><a class="toc-backref" href="#id3">Can I disable the option, &#8220;publish your notebook to anaconda.org&#8221;?</a><a class="headerlink" href="#can-i-disable-the-option-publish-your-notebook-to-anaconda-org" title="Permalink to this headline">¶</a></h2>
    <p>Yes. The upload button in the notebook app executes the option &#8220;publish your
    notebook to anaconda.org&#8221;. To disable it, log in as the AEN_SRVC_ACCT and run
    these commands:</p>
    <div class="highlight-default"><div class="highlight"><pre><span></span><span class="n">source</span> <span class="n">activate</span> <span class="o">/</span><span class="n">opt</span><span class="o">/</span><span class="n">wakari</span><span class="o">/</span><span class="n">wakari</span><span class="o">-</span><span class="n">compute</span>
    <span class="n">jupyter</span><span class="o">-</span><span class="n">nbextension</span> <span class="n">disable</span> <span class="n">nb_anacondacloud</span> <span class="o">--</span><span class="n">py</span> <span class="o">--</span><span class="n">sys</span><span class="o">-</span><span class="n">prefix</span>
    <span class="n">jupyter</span><span class="o">-</span><span class="n">serverextension</span> <span class="n">disable</span> <span class="n">nb_anacondacloud</span> <span class="o">--</span><span class="n">py</span> <span class="o">--</span><span class="n">sys</span><span class="o">-</span><span class="n">prefix</span>
    </pre></div>
    </div>
    </div>
    <div class="section" id="how-can-i-check-the-version-number-of-my-aen-server">
    <h2><a class="toc-backref" href="#id4">How can I check the version number of my AEN server?</a><a class="headerlink" href="#how-can-i-check-the-version-number-of-my-aen-server" title="Permalink to this headline">¶</a></h2>
    <p>Go to this URL in a browser: <code class="docutils literal"><span class="pre">http://$AEN_SERVER/admin/list</span></code></p>
    <p>NOTE: Replace <code class="docutils literal"><span class="pre">$AEN_SERVER</span></code> with the domain name or the domain name and port number
    of your AEN server.</p>
    </div>
    <div class="section" id="can-i-use-aen-to-access-csv-or-amazon-s3-data">
    <h2><a class="toc-backref" href="#id5">Can I use AEN to access CSV or Amazon S3 data?</a><a class="headerlink" href="#can-i-use-aen-to-access-csv-or-amazon-s3-data" title="Permalink to this headline">¶</a></h2>
    <p>Yes. If your data is in CSV files, upload the CSV files to your
    AEN account using the upload controls in the File Browser of the
    Workbench Application or the File Transfer Application.</p>
    <p>To access data stored on Amazon S3, use the Boto interface from AEN.
    See the public data files in AEN for examples
    of how to use Boto to pull your data from Amazon S3 into AEN. For
    more information, see <a class="reference external" href="https://boto3.readthedocs.io/en/latest/">Boto documentation</a>.</p>
    <p>You can also use IOPro to simplify and optimize the conversion of
    your data into Python arrays.</p>
    </div>
    <div class="section" id="can-i-install-other-python-packages">
    <h2><a class="toc-backref" href="#id6">Can I install other Python packages?</a><a class="headerlink" href="#can-i-install-other-python-packages" title="Permalink to this headline">¶</a></h2>
    <p>Yes, by creating a custom environment for your packages within your project.</p>
    <p>For more information, see
    <a class="reference internal" href="user-guide/basic-tasks/apps/jupyter/use-nbconda-ext.html"><span class="doc">Using the NBConda extension</span></a>.</p>
    </div>
    <div class="section" id="can-i-create-a-python-environment-from-the-command-line">
    <h2><a class="toc-backref" href="#id7">Can I create a Python environment from the command line?</a><a class="headerlink" href="#can-i-create-a-python-environment-from-the-command-line" title="Permalink to this headline">¶</a></h2>
    <p>Yes, you can use the <code class="docutils literal"><span class="pre">conda</span> <span class="pre">create</span></code> command to create custom
    Python environments with whatever packages you choose. All
    AEN environments are shared with all the team members of a
    project.</p>
    <p>EXAMPLE: In this example, myenv is a new environment containing
    the NumPy package.</p>
    <div class="highlight-bash"><div class="highlight"><pre><span></span>conda create -n myenv numpy
    </pre></div>
    </div>
    <p>NOTE: Python, Jupyter Notebooks and PIP are installed by default
    in all new AEN environments.</p>
    <p>To use your new environment, activate it by running
    <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="can-i-connect-to-github-with-aen">
    <h2><a class="toc-backref" href="#id8">Can I connect to GitHub with AEN?</a><a class="headerlink" href="#can-i-connect-to-github-with-aen" title="Permalink to this headline">¶</a></h2>
    <p>Yes, you have full access to GitHub through an AEN Terminal application.</p>
    <p>To generate an SSH key from your AEN account and add it to your GitHub account:</p>
    <ol class="arabic simple">
    <li><a class="reference external" href="https://help.github.com/articles/generating-an-ssh-key/">Generate a GitHub SSH key</a>.</li>
    <li>Copy your key by running <code class="docutils literal"><span class="pre">cat</span> <span class="pre">~/.ssh/id_rsa.pub</span></code>.</li>
    <li>Select and copy the contents of the <code class="docutils literal"><span class="pre">id_rsa.pub</span></code> file to the clipboard.</li>
    <li>Follow <a class="reference external" href="https://help.github.com/articles/adding-a-new-ssh-key-to-your-github-account/">GitHub&#8217;s instructions</a>
    to go to your GitHub account and paste it from your clipboard
    into the appropriate box in your GitHub settings.</li>
    </ol>
    </div>
    <div class="section" id="can-i-print-or-print-preview-my-jupyter-notebooks">
    <h2><a class="toc-backref" href="#id9">Can I print or print preview my Jupyter Notebooks?</a><a class="headerlink" href="#can-i-print-or-print-preview-my-jupyter-notebooks" title="Permalink to this headline">¶</a></h2>
    <p>Yes, you can print your notebooks using your browser&#8217;s regular printing
    capabilities.</p>
    <p>You can also preview the printed page by clicking the <strong>File</strong> menu and
    selecting Print Preview.</p>
    </div>
    <div class="section" id="is-there-a-set-amount-of-storage-on-aen">
    <h2><a class="toc-backref" href="#id10">Is there a set amount of storage on AEN?</a><a class="headerlink" href="#is-there-a-set-amount-of-storage-on-aen" title="Permalink to this headline">¶</a></h2>
    <p>No, there is no set limit for storage in AEN. You are limited only by the
    size of the disk where AEN is installed.</p>
    <p>If you need more storage, contact your system administrator.</p>
    </div>
    <div class="section" id="how-do-i-get-help-give-feedback-suggest-features-or-report-a-bug">
    <h2><a class="toc-backref" href="#id11">How do I get help, give feedback, suggest features or report a bug?</a><a class="headerlink" href="#how-do-i-get-help-give-feedback-suggest-features-or-report-a-bug" title="Permalink to this headline">¶</a></h2>
    <p>See <a class="reference internal" href="help-support.html"><span class="doc">Help and support</span></a>.</p>
    </div>
