"...git@developer.sourcefind.cn:chenpangpang/transformers.git" did not exist on "3e56e2ce04ea3c2f6fa0934bd6d422d8dab17201"
Unverified Commit 91c4a3ab authored by varshith's avatar varshith Committed by GitHub
Browse files

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

* Added command for windows VENV activation

* changed linux and macos  specification
parent 1b749a7f
...@@ -34,11 +34,16 @@ Start by creating a virtual environment in your project directory: ...@@ -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:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment