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
Python projects in this repository use Python 3.7. See the [Python Beginners Guide](https://wiki.python.org/moin/BeginnersGuide) if you have never worked with the language.
47
+
Python projects in this repository use Python 3.9. See the [Python Beginners Guide](https://wiki.python.org/moin/BeginnersGuide) if you have never worked with the language.
48
48
49
49
```
50
50
$ python3 --version
51
-
Python 3.7.11
51
+
Python 3.9.17
52
52
```
53
53
54
54
If you are using pyenv.
55
55
56
56
```
57
-
pyenv install 3.7.12 # use 3.7.9 on Windows, the latest at the time of writing this
58
-
pyenv global 3.7.12
57
+
pyenv install 3.9.17 # use 3.9.17 on Windows, the latest at the time of writing this
58
+
pyenv global 3.9.17
59
59
```
60
60
61
61
#### Pipenv
@@ -66,25 +66,16 @@ This project uses [pipenv](https://pipenv.pypa.io/en/latest/), which is typicall
66
66
$ pip install pipenv
67
67
68
68
$ pipenv --version
69
-
pipenv, version 19.0
69
+
pipenv, version 2023.6.12
70
70
```
71
71
72
72
On Windows, run `pyenv rehash` if `pipenv` cannot be found. This rehashes pyenv shims, creating a `pipenv` file in `/.pyenv/pyenv-win/shims/`.
73
73
74
74
#### NVM and Node
75
75
76
-
Install [nvm](https://github.com/nvm-sh/nvm/blob/master/README.md) to use the Node 14.18.2 version as it is required
76
+
Install [nvm](https://github.com/nvm-sh/nvm/blob/master/README.md) to use the Node version defined in [OpenSearch-Dashboards](https://github.com/opensearch-project/OpenSearch-Dashboards) repository `.nvmrc` file as it is required.
0 commit comments