![]() |
Articles about problems that I have encountered and the solutions and technologies used to fix them. Although technical in nature, these often start with an explanation of the problem space and context which is generally quite accessible before diving into the more technical bits |
Python Virtual Environment
After installing python you should install virtualenv which will allow you to have different python environments with different dependencies without package version conflicts. Once activated the virtual environment is available globally until deactivated. 1. Create New Virtual Environment Consider creating a directory to store all your different python environments or associate the python virtual environment within a specific project folder of something that you are working on. Use the following command (once) to create the virtual python env (and folder) in your current working directory ...