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>2020-01-30 18:09:15 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-01-30 18:09:15 +0300
commit536aa3a1f4b96abc4ca34489bf2cbe503afcded7 (patch)
tree88d08f7dfa29a32d6526773c4fe0fefd9f2bc7d1 /doc/development/python_guide
parent50ae4065530c4eafbeb7c5ff2c462c48c02947ca (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, 6 insertions, 6 deletions
diff --git a/doc/development/python_guide/index.md b/doc/development/python_guide/index.md
index d898351345d..af1ec44bf3d 100644
--- a/doc/development/python_guide/index.md
+++ b/doc/development/python_guide/index.md
@@ -15,7 +15,7 @@ Ruby world: [rbenv](https://github.com/rbenv/rbenv).
To install `pyenv` on macOS, you can use [Homebrew](https://brew.sh/) with:
-```bash
+```shell
brew install pyenv
```
@@ -23,7 +23,7 @@ brew install pyenv
To install `pyenv` on Linux, you can run the command below:
-```bash
+```shell
curl https://pyenv.run | bash
```
@@ -38,13 +38,13 @@ check for any additional steps required for it.
For Fish, you can install a plugin for [Fisher](https://github.com/jorgebucaran/fisher):
-```bash
+```shell
fisher add fisherman/pyenv
```
Or for [Oh My Fish](https://github.com/oh-my-fish/oh-my-fish):
-```bash
+```shell
omf install pyenv
```
@@ -59,7 +59,7 @@ Recently, an equivalent to the `Gemfile` and the [Bundler](https://bundler.io/)
You will now find a `Pipfile` with the dependencies in the root folder. To install them, run:
-```bash
+```shell
pipenv install
```
@@ -70,7 +70,7 @@ Running this command will install both the required Python version as well as re
To run any Python code under the Pipenv environment, you need to first start a `virtualenv` based on the dependencies
of the application. With Pipenv, this is a simple as running:
-```bash
+```shell
pipenv shell
```