Added Command for windows VENV activation in installation docs (#18008)

* Added command for windows VENV activation

* changed linux and macos  specification
This commit is contained in:
varshith
2022-07-07 14:18:44 +02:00
committed by GitHub
parent 1b749a7f8d
commit 91c4a3ab1a

View File

@@ -34,11 +34,16 @@ Start by creating a virtual environment in your project directory:
python -m venv .env python -m venv .env
``` ```
Activate the virtual environment: Activate the virtual environment. On Linux and MacOs:
```bash ```bash
source .env/bin/activate source .env/bin/activate
``` ```
Activate Virtual environment on Windows
```bash
.env/Scripts/activate
```
Now you're ready to install 🤗 Transformers with the following command: Now you're ready to install 🤗 Transformers with the following command: