delete 'venv.md' file

This commit is contained in:
anonymous 2024-02-24 12:55:10 +01:00
parent fff32beb66
commit 3340794713

View file

@ -1,18 +0,0 @@
## New python project with virtual env in ZED
* create $PROJECT `mkdir project; cd project`
* create `python -m venv .venv`
* activate `source .venv/bin/activate`
* create pyrightconfig.json
```json
{
"venvPath": ".",
"venv": ".venv"
}
```
* `pip install ...`
* `zed .`
* to quit the venv: `deactivate`