Skip to content

Instantly share code, notes, and snippets.

View darkato42's full-sized avatar
🏠
Working from home

Yulin Wu darkato42

🏠
Working from home
View GitHub Profile
@darkato42
darkato42 / gist:4bed96336fe2ad33646fd8d036f4cc97
Created May 17, 2022 07:20 — forked from 480/gist:3b41f449686a089f34edb45d00672f28
MacOS X + oh my zsh + powerline fonts + visual studio code terminal settings

MacOS X + oh my zsh + powerline fonts + visual studio code (vscode) terminal settings

Thank you everybody, Your comments makes it better

Install oh my zsh

http://ohmyz.sh/

sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
@darkato42
darkato42 / setup-python3-virtual-env.md
Created May 14, 2022 09:31 — forked from MichaelCurrin/setup-python3-virtual-env.md
Set up a Python 3 virtual environment

Set up a Python 3 virtual environment

A beginner's guide to installing Python 3 and setting up a virtual environment

This guide covers how to install and upgrade Python 3 and how to create and an install into a Python virtual environment.

This is best practice in Python for both local and production code, as it isolates the scope where your python commands and pip commands run, protecting your global environment and allowing your to manage multiple virtual environments each with their own set of unique Python packages.