You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,15 @@ To isolate dependencies from your global python installation, it is important to
4
4
[virtualenv](https://virtualenv.pypa.io/en/stable/). With `virtualenv` you can install the dev environment by doing the following.
5
5
6
6
Another option would be to use docker directly, i.e.
7
-
```bash
8
-
docker run -it -v `echo $PWD`:/root python:3.6.8 bash
9
7
8
+
```bash
9
+
docker run -it -v `echo $PWD`:/root python:3.7 bash
10
10
```
11
11
12
12
-`pip install -e .`
13
-
-`pip install -r dev-requirements-py3.txt`
13
+
-`pip install -r dev-requirements.txt`
14
14
15
-
To verify that the installation of `databricks-cli` is the one checked out from VCS, you can check by doing `python -c "import databricks_cli; printdatabricks_cli.__file__"`.
15
+
To verify that the installation of `databricks-cli` is the one checked out from VCS, you can check by doing `python -c "import databricks_cli; print(databricks_cli.__file__)"`.
0 commit comments