diff --git a/brainsteam/content/posts/2021/04/2021-04-13-virtualenvs/index.md b/brainsteam/content/posts/2021/04/2021-04-13-virtualenvs/index.md index 594464e..d14264c 100644 --- a/brainsteam/content/posts/2021/04/2021-04-13-virtualenvs/index.md +++ b/brainsteam/content/posts/2021/04/2021-04-13-virtualenvs/index.md @@ -42,7 +42,7 @@ There are lots of options available to you for both tasks and some tools try to A virtual environment is a copy of a Python interpreter, bundled away into a folder with project-specific libraries and dependencies. This allows you to keep your project runtimes logically separated and avoids inter-project dependency conflicts. -![virtualenv.png](:./images/virtualenv.png) +![virtualenv.png](images/virtualenv.png) Simply: when you install a library into a virtual environment the files are literally in a separate folder to the dependencies of your other projects. Beautiful simplicity.