
We all use PyPI – here’s a way to ensure we always have access.
Musings of a backend Software Developer
We all use PyPI – here’s a way to ensure we always have access.
Learn how to install Django and start a project.
In Python, a virtual environment is way of isolating a working copy of Python to test software or to install new packages without affecting existing packages. virtualenv is a tool used to create isolated Python environments. virtualenv is a useful tool for creating sandboxes or for installing packages locally without system administrator access and also
Continue reading Virtual environments in Python
Python follows a “batteries included” philosophy, which means that a lot of functionality you may need is built in to the language itself.Python developers have developed their own modules to extend Python’s capabilities even further. These third party modules are kept in the Python Package Index or PyPI which is similar to an app store
Continue reading How to install 3rd party python modules