All public logs
Jump to navigation
Jump to search
Combined display of all available logs of 清冽之泉. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 10:43, 29 September 2025 Mwroot talk contribs created page 怎么使用 python 虚拟环境 venv (Created page with "== pip 不要 sudo == 不要用 sudo pip install xxx 安装系统级别的包。不要用 sudo pip,它会改写系统层面的配置。 用 apt 或 pacman 等系统层面的包管理工具,安装系统层面的应用,如 sudo pacman -S python-requests == 用好 venv == <syntaxhighlight lang="bash"> sudo apt install python3-venv python3 -m venv venvsth source venv/bin/activate pip install -r requirements.txt </syntaxhighlight> * 只要你已经执行了 source ve...")