diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c7381ce4d10962a90ee0c2c81e3cd7f48e43bed1..904ad7bf5939d56caed17b6ca1b3572df5408ec3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -42,14 +42,6 @@ test:
     - apt-get update -q
     - apt-get install -q -y libgl1
 
-    # Add netrc file
-    - |
-      echo "
-      machine gitlab.teklia.com
-      login gitlab-ci-token
-      password $CI_JOB_TOKEN
-      " > ~/.netrc
-
   except:
     - schedules
 
@@ -68,15 +60,6 @@ docker-build:
   except:
     - schedules
 
-  before_script:
-    # Add netrc file
-    - |
-      echo "
-      machine gitlab.teklia.com
-      login gitlab-ci-token
-      password $CI_JOB_TOKEN
-      " > ~/.netrc
-
   script:
     - ci/build.sh
 
@@ -88,15 +71,7 @@ docker-build:
       - public
 
   before_script:
-    # Add netrc file
-    - |
-      echo "
-      machine gitlab.teklia.com
-      login gitlab-ci-token
-      password $CI_JOB_TOKEN
-      " > ~/.netrc
-
-    - pip install --index-url https://gitlab.teklia.com/api/v4/projects/210/packages/pypi/simple -e .[docs]
+    - pip install -e .[docs]
 
   script:
     - mkdocs build --strict --verbose
@@ -193,9 +168,6 @@ bump-python-deps:
   stage: deploy
   image: registry.gitlab.teklia.com/infra/devops:latest
 
-  variables:
-    PYPI_GITLAB_URL: https://gitlab.teklia.com/api/v4/projects/210/packages
-
   only:
     - schedules
 
diff --git a/Dockerfile b/Dockerfile
index 4a42644db1fa2feb9bd50aea3c3972db47b0911a..6f5c337f1d4dd14a46b7148c0ed4e287c18e6341 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -13,4 +13,4 @@ COPY requirements.txt *-requirements.txt setup.py VERSION README.md ./
 
 # Install DAN as a package with GitLab package registry
 RUN --mount=type=secret,id=netrc,target=/root/.netrc \
-    pip install . --no-cache-dir --index-url https://gitlab.teklia.com/api/v4/projects/210/packages/pypi/simple
+    pip install . --no-cache-dir
diff --git a/ci/build.sh b/ci/build.sh
index 65956bf7bdc0c82360a6917f35b1d41504ae6c6a..f29f50f27b88056216e6f880bb713012fc4e9956 100755
--- a/ci/build.sh
+++ b/ci/build.sh
@@ -17,7 +17,7 @@ fi
 IMAGE_TAG="$CI_REGISTRY_IMAGE:$VERSION"
 
 cd $CI_PROJECT_DIR
-docker build -f Dockerfile . -t "$IMAGE_TAG" --secret id=netrc,src=$HOME/.netrc
+docker build -f Dockerfile . -t "$IMAGE_TAG"
 
 # Publish the image on the main branch or on a tag
 if [ "$CI_COMMIT_REF_NAME" = "main" -o -n "$CI_COMMIT_TAG" ]; then
diff --git a/docs/get_started/development.md b/docs/get_started/development.md
index d94ca211aaeeb08e368a72d156465268dd1a778b..f5098dc628eac0c2780d63dad61a378542e8b605 100644
--- a/docs/get_started/development.md
+++ b/docs/get_started/development.md
@@ -81,11 +81,9 @@ Add the `docs` extra when installing `teklia-dan`:
 
 ```shell
 # In a clone of the Git repository
-pip install --index-url https://gitlab.teklia.com/api/v4/projects/210/packages/pypi/simple .[docs]
+pip install .[docs]
 ```
 
-The `--index-url` argument is required to find the `nerval` package.
-
 Build the documentation using `mkdocs serve -v`. You can then write in [Markdown](https://www.markdownguide.org/) in the relevant `docs/*.md` files, and see live output on http://localhost:8000.
 
 ### Linter
diff --git a/docs/get_started/index.md b/docs/get_started/index.md
index 066ae84b0619297e7a04ca85d424eae2d8cb4b62..c46de2dbd074f4774dac8924e2979495f9757f5e 100644
--- a/docs/get_started/index.md
+++ b/docs/get_started/index.md
@@ -2,7 +2,7 @@
 
 ## Installation
 
-DAN is based on a GitLab package registry containing all the nerval source code.
+DAN is published on a GitLab package registry.
 You need [a personal access token](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html) with [scope](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html#personal-access-token-scopes) `read_api` in order to install this module. You will need to add the below to your `~/.netrc` file:
 
 ```shell
@@ -11,18 +11,16 @@ login __token__
 password <YOUR_PERSONAL_TOKEN>
 ```
 
-If you install DAN as a dependency, the host must have access to this configuration file to be able to download the [nerval repository](https://gitlab.teklia.com/ner/nerval) package.
-
 ### As a dependency
 
 To install DAN as a dependency, you need to first add the following line to your `requirements.txt` file:
 
 ```shell
---index-url https://gitlab.teklia.com/api/v4/projects/98/packages/pypi/simple --extra-index-url https://gitlab.teklia.com/api/v4/projects/210/packages/pypi/simple
+--index-url https://gitlab.teklia.com/api/v4/projects/98/packages/pypi/simple
 teklia-dan
 ```
 
-The `--index-url` argument is required to find the `DAN` package, the `--extra-index-url` argument is needed to find the `nerval` dependency.
+The `--index-url` argument is required to find the `DAN` package.
 
 Then you can install it via pip:
 
@@ -35,10 +33,10 @@ pip install -r requirements.txt
 To install DAN directly, you can install it via pip:
 
 ```shell
-pip install --index-url https://gitlab.teklia.com/api/v4/projects/98/packages/pypi/simple --extra-index-url https://gitlab.teklia.com/api/v4/projects/210/packages/pypi/simple teklia-dan
+pip install --index-url https://gitlab.teklia.com/api/v4/projects/98/packages/pypi/simple teklia-dan
 ```
 
-The `--index-url` argument is required to find the `DAN` package, the `--extra-index-url` argument is needed to find the `nerval` dependency.
+The `--index-url` argument is required to find the `DAN` package.
 
 ---
 
@@ -55,11 +53,9 @@ For development and tests purpose it may be useful to install the project as a e
 To install DAN as an editable package, you can install it via pip:
 
 ```shell
-pip install --index-url https://gitlab.teklia.com/api/v4/projects/210/packages/pypi/simple -e .
+pip install -e .
 ```
 
-The `--index-url` argument is required to find the `nerval` dependency.
-
 Get started with:
 
 - [Developments](development.md)
diff --git a/docs/usage/train/config.md b/docs/usage/train/config.md
index 43da046d4e206977bdc40fcddf627f775248e64d..ea822e2c2651ef2a0d4c423c7ed0f0837f599985 100644
--- a/docs/usage/train/config.md
+++ b/docs/usage/train/config.md
@@ -254,11 +254,9 @@ To log your experiment on MLFlow, you need to:
 - install the extra requirements via
 
 ```shell
-$ pip install --index-url https://gitlab.teklia.com/api/v4/projects/210/packages/pypi/simple .[mlflow]
+$ pip install .[mlflow]
 ```
 
-The `--index-url` argument is required to find the `nerval` package.
-
 - update the following arguments:
 
 | Name                           | Description                             | Type  | Default |
diff --git a/tox.ini b/tox.ini
index 3067b2942b06a3242a17c0f2c5ba93450a8add09..ffb845de95a7750ccdf7d1fe5e3ecfde4bc8cd22 100644
--- a/tox.ini
+++ b/tox.ini
@@ -14,8 +14,5 @@ deps =
 commands =
     pytest {tty:--color=yes} {posargs}
 
-setenv =
-  PIP_INDEX_URL=https://gitlab.teklia.com/api/v4/projects/210/packages/pypi/simple
-
 [pytest]
 testpaths= tests