Update 'brainsteam/content/posts/2021/04/2021-04-13-virtualenvs/index.md'
continuous-integration/drone/push Build is passing Details

This commit is contained in:
ravenscroftj 2021-04-13 14:23:52 +00:00
parent acb18e8737
commit 9b15adae46
1 changed files with 1 additions and 1 deletions

View File

@ -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.