{
"cells": [
{
"cell_type": "markdown",
"id": "fad43de4",
"metadata": {},
"source": [
"# Adding custom python libraries
\n",
"It is possible to add additional python libraries to your notebook environment, but you first need to follow the steps below.\n",
" \n",
"This example creates a new environment called **myenv**. You should replace all instances of **myenv** with whatever name you would like to call your new environment."
]
},
{
"cell_type": "markdown",
"id": "8e8fb95b",
"metadata": {},
"source": [
"### 1. Create new virtual environment\n",
"First, **in a terminal** (File>New>Terminal), create a virtual environment\n",
"```bash\n",
"MYENV=myenv\n",
"python3 -m venv ~/venvs/${MYENV}\n",
"```"
]
},
{
"cell_type": "markdown",
"id": "e491b605-ef63-4532-9b23-3a67ea3046e4",
"metadata": {},
"source": [
"
NOTE: Make sure that you replace myenv every time with whatever name you would like for your new environment.