We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dcc33b commit 834752aCopy full SHA for 834752a
.gitpod.yml
@@ -2,10 +2,10 @@ gitConfig:
2
core.autocrlf: "true"
3
4
tasks:
5
- - init: pip3 install -r ./requirements.dev.txt
+ # fix errors when installing packages inside virtualenv
6
+ - init: sed -i "s/PIP_USER=yes/PIP_USER=no/" ~/.bashrc; source ~/.bashrc; python3 -m venv venv; source venv/bin/activate; python3 -m pip3 install --upgrade pip; pip3 install --upgrade -r requirements.dev.txt
7
8
vscode:
- # TODO: Synchorize it with values from .vscode/extensions.json/#recommendations
9
extensions:
10
- ms-python.python
11
- stylelint.vscode-stylelint
0 commit comments