Last active
October 27, 2024 16:50
-
-
Save aliuq/f8fb610375c3224bf4fe81387318f9a5 to your computer and use it in GitHub Desktop.
Revisions
-
aliuq renamed this gist
Mar 12, 2023 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
aliuq renamed this gist
Mar 12, 2023 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
aliuq created this gist
Mar 12, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ # 在项目根目录下添加一个虚拟环境 venv python3 -m venv venv # 激活虚拟环境 source venv/bin/activate # 在虚拟环境下安装依赖,依赖隔离 pip install -r requirement.txt # 退出虚拟环境 deactivate