📌  相关文章
📜  将 venv 复制到另一个文件夹 linux - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:06.193000             🧑  作者: Mango

代码示例1
# while using existing virtualenv
(oldenv): pip freeze > requirements.txt

# after creating and logged-in to new virtualenv
(newenv): pip install -r requirements.txt

# where requirements.txt is the same file created using (oldenv)