Skip to content

Instantly share code, notes, and snippets.

@managedkaos
Created June 12, 2023 22:27
Show Gist options
  • Save managedkaos/6ac7bfdf158ae13d07e0ef46038867e1 to your computer and use it in GitHub Desktop.
Save managedkaos/6ac7bfdf158ae13d07e0ef46038867e1 to your computer and use it in GitHub Desktop.
Locate iPython profiles using a Jupyter notebook.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"id": "33ef1d79-4cad-48a6-a107-57153cd0f032",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"\u001b[1m\u001b[34mprofile_data-science\u001b[m\u001b[m \u001b[1m\u001b[34mprofile_default\u001b[m\u001b[m\n"
]
}
],
"source": [
"!ls ~/.ipython/"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "b9906a90-6e31-4ea1-9d94-124521ab955b",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"README\n"
]
}
],
"source": [
"!ls ~/.ipython/profile_default/startup"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "bd5f4b9e-3c3d-407e-a7a6-3c00339801fc",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"This is the IPython startup directory\n",
"\n",
".py and .ipy files in this directory will be run *prior* to any code or files specified\n",
"via the exec_lines or exec_files configurables whenever you load this profile.\n",
"\n",
"Files will be run in lexicographical order, so you can control the execution order of files\n",
"with a prefix, e.g.::\n",
"\n",
" 00-first.py\n",
" 50-middle.py\n",
" 99-last.ipy\n"
]
}
],
"source": [
"!cat ~/.ipython/profile_default/startup/README"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "5ceb61e3-14c7-42d4-97ee-d21a6a820ff8",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.3"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment