Python

Hiding Pycache Files in VS Code

If you've been working on Python projects in VS Code, you will notice that __pycache__ folders appear within your project directory and they result in a lot of visual clutter. This post will walk you through getting a little bit more zen back into your editor by freeing up visual real-estate so you don't need to look at it ever again!

Read
python

Installing an IPython Kernel For a Virtual Environment For Use in Jupyter Notebook

By making Jupyter aware of a specific version of python inside a virtual environment you can have more reproducible code and avoid conflicts introduced by third party packages when they are inevitably updated. You can keep your python version and third party libraries isolated from your OS and use it within Jupyter for a dynamic programming environment.

Read
python

Virtual Environments in Python Using Venv

How to initialize and use a virtual environment in Python using the built-in venv module

Read