AAnonymousincreate-python3-virtual-environment.hashnode.dev·May 5, 2025 · 1 min readSet up a fast PyPI mirror for pip1. Install pip using aliyun mirror pip install 包名 -i https://mirrors.aliyun.com/pypi/simple/00
AAnonymousincreate-python3-virtual-environment.hashnode.dev·May 5, 2025 · 1 min readCommand to create a Python3 virtual environmentCreate a virtual environment in the terminal python3 -m venv Myvenv Activate the virtual environment(Windows) venv\Scripts\activate00