From 536aa3a1f4b96abc4ca34489bf2cbe503afcded7 Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Thu, 30 Jan 2020 15:09:15 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- doc/development/python_guide/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/development/python_guide') 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 ``` -- cgit v1.2.3