Fading Coder

One Final Commit for the Last Sprint

Configuring Development Environment Mirrors in China

Open Source Mirror Sites in China University Mirrors Tsinghua University Open Source Software Mirror Site (commonly used) University of Science and Technology of China Open Source Mirror (commonly used) Zhejiang University Open Source Mirror Site (Linux distributions, pip libraries) Harbin Institute...

Managing Python Virtual Environments

Managing Python Virtual Environments
A Python virtual enviroment is an isolated copy of the original Python installation. It allows you to manage project-specific dependencies without interfering with the system-wide Python setup. The virtual environment is essentially a copy of the base environment, as illustrated below: The Lib direc...