JSFiddle - React, Tailwind, and code Playground
by Chris
HTML
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; style-src cspSource; script-src cspSource">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conda Cheatsheet</title>
<link rel="stylesheet" href="styleFilePath">
</head>
<body>
<h1>Conda Cheatsheet</h1>
<nav>
<ul>
<li><a href="#getting-started" title="Getting Started">Getting Started</a></li>
<li><a href="#working-with-environments" title="Working with Environments">Working with Environments</a></li>
<li><a href="#sharing-environments" title="Sharing Environments">Sharing Environments</a></li>
<li><a href="#using-packages-and-channels" title="Using Packages and Channels">Using Packages and Channels</a></li>
<li><a href="#additional-useful-hints" title="Additional Useful Hints">Additional Useful Hints</a></li>
</ul>
</nav>
<div class="sections">
<div class="section">
<div class="breaker"></div>
<h2 id="getting-started">Getting Started</h2>
<div class="command"><span>Verify Conda is installed, check version number</span>
<pre>conda info</pre>
</div>
<div class="command"><span>Update Conda to the current version</span>
<pre>conda update -n base conda</pre>
</div>
<div class="command"><span>Update all packages to teh latest version of Anaconda. Will install stable and compatible versions, not necessarily the very latest.</span>
<pre>conda update anaconda</pre>
</div>
</div>
<div class="section">
<div class="breaker"></div>
<h2 id="working-with-environments">Working with Environments</h2>
<div class="command"><span>Create a new environment named ENVNAME with specific version of Python and packages installed.</span>
<pre>conda create --name <ENVNAME> python=3.6 "PKG1>7.6" PKG2</pre>
</div>
<div class="command"><span>Activate a...