We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 822e4aa commit 1a1ca62Copy full SHA for 1a1ca62
dev-setup.sh
@@ -1,12 +1,15 @@
1
# Create venv if not already present
2
if [ ! -d "venv" ]; then
3
- python3 -m pip install -U virtualenv
4
- python3 -m virtualenv venv
+ python3.9 -m pip install -U virtualenv
+ python3.9 -m virtualenv venv
5
fi
6
7
# Activate the desired venv
8
-source venv/bin/activate
+#source venv/bin/activate
9
10
-python3 -m pip install --editable .[dev] --upgrade
+#python3 -m pip install --editable .[dev] --upgrade
11
12
-pre-commit install
+#pre-commit install
13
+./venv/bin/python -m pip install --upgrade pip
14
+./venv/bin/python -m pip install --editable '.[dev]' --upgrade
15
+./venv/bin/pre-commit install
0 commit comments