From 10239269dff918be8d576ae477a6742dad00a04b Mon Sep 17 00:00:00 2001 From: Marcus Lugg Date: Wed, 22 Aug 2018 12:35:43 +0100 Subject: [PATCH] DOC: Add virtual environments topic page --- README.md | 1 + docs/topics/_topics_overview.md | 1 + docs/topics/virtual_environments.md | 7 +++++++ 3 files changed, 9 insertions(+) create mode 100644 docs/topics/virtual_environments.md diff --git a/README.md b/README.md index e131a8f..96f9f50 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,7 @@ This is the list of topics I have identified for further study and investigation | Sphinx documentation | 1 | | `matplotlib` and `seaborn` | 1 | | Python packaging in depth | 1 | [Here](/docs/topics/packaging.md) | +| Virtual environments | 1 | [Here](/docs/topics/virtual_environments.md) | Encoding | 1 | | Error handling | 1 | | NoSQL databases; mongoDB | 2 | diff --git a/docs/topics/_topics_overview.md b/docs/topics/_topics_overview.md index 568af6d..fd18ca5 100644 --- a/docs/topics/_topics_overview.md +++ b/docs/topics/_topics_overview.md @@ -19,6 +19,7 @@ This is the list of topics I have identified for further study and investigation | Sphinx documentation | 1 | | `matplotlib` and `seaborn` | 1 | | Python packaging in depth | 1 | [Here](/docs/topics/packaging.md) | +| Virtual environments | 1 | [Here](/docs/topics/virtual_environments.md) | Encoding | 1 | | Error handling | 1 | | NoSQL databases; mongoDB | 2 | diff --git a/docs/topics/virtual_environments.md b/docs/topics/virtual_environments.md new file mode 100644 index 0000000..89821b6 --- /dev/null +++ b/docs/topics/virtual_environments.md @@ -0,0 +1,7 @@ +# Virtual environments + +| Topic(s) | Resource | Addressed | +| :------- | :------- | :-------: | +| Which package to use to create the environment (e.g. `venv` vs `virtualenv` vs `pipenv`) | +| The specifics of creating and using a virtual environment | +| Use of `pip` with virtual environments | \ No newline at end of file