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).
- 11:50, 29 May 2025 Mwroot talk contribs created page How to use python in venv (Created page with "== pip 不要 sudo == 不要用 sudo pip install xxx 安装系统级别的包。 用 apt 或 pacman 等系统层面的包管理工具,安装系统层面的应用,如 sudo pacman -S python-requests == 用好 venv == <syntaxhighlight lang="bash" line> python -m venv venv source venv/bin/activate pip install -r requirements.txt </syntaxhighlight> * 每个项目一个虚拟环境,保持依赖隔离。错了就删,没有后遗症 * venv 中安装包不需要 sudo...")