From 91c4a3ab1a7f6651bbcd27ccd98d8f3e69189911 Mon Sep 17 00:00:00 2001 From: varshith Date: Thu, 7 Jul 2022 14:18:44 +0200 Subject: [PATCH] Added Command for windows VENV activation in installation docs (#18008) * Added command for windows VENV activation * changed linux and macos specification --- docs/source/en/installation.mdx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/source/en/installation.mdx b/docs/source/en/installation.mdx index 5e25b60b48..f204901158 100644 --- a/docs/source/en/installation.mdx +++ b/docs/source/en/installation.mdx @@ -34,11 +34,16 @@ Start by creating a virtual environment in your project directory: python -m venv .env ``` -Activate the virtual environment: +Activate the virtual environment. On Linux and MacOs: ```bash source .env/bin/activate ``` +Activate Virtual environment on Windows + +```bash +.env/Scripts/activate +``` Now you're ready to install 🤗 Transformers with the following command: