Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-05-13 21:08:33 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-05-13 21:08:33 +0300
commit9adada1187b920547a57b4bb406c3e3c55436bf1 (patch)
tree6c246b5f6acd81f24071f654a41df5081d671df1 /doc/development/python_guide
parent7eca3f56625526ffa7f263c1fef0fcea34de8ca6 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/python_guide')
-rw-r--r--doc/development/python_guide/index.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/development/python_guide/index.md b/doc/development/python_guide/index.md
index fe5492c3bd8..77dd328b513 100644
--- a/doc/development/python_guide/index.md
+++ b/doc/development/python_guide/index.md
@@ -25,6 +25,18 @@ To install `pyenv` on macOS, you can use [Homebrew](https://brew.sh/) with:
brew install pyenv
```
+### Windows
+
+`pyenv` does not officially support Windows and does not work in Windows outside the Windows Subsystem for Linux. If you are a Windows user, you can use `pyenv-win`.
+
+To install `pyenv-win` on Windows, run the following PowerShell command:
+
+```shell
+Invoke-WebRequest -UseBasicParsing -Uri "https://raw.githubusercontent.com/pyenv-win/pyenv-win/master/pyenv-win/install-pyenv-win.ps1" -OutFile "./install-pyenv-win.ps1"; &"./install-pyenv-win.ps1"
+```
+
+[Learn more about `pyenv-win`](https://github.com/pyenv-win/pyenv-win).
+
### Linux
To install `pyenv` on Linux, you can run the command below: