pyvenvs.md
· 221 B · Markdown
原始檔案
How do I do that _virtual environment_ thing again?
### Create python virtual environment
```bash
python3 -m venv venv
source venv/bin/activate
```
### Install dependencies
```bash
pip install -r requirements.txt
```
How do I do that virtual environment thing again?
Create python virtual environment
python3 -m venv venv
source venv/bin/activate
Install dependencies
pip install -r requirements.txt