Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion docs/source/en/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should specify on the previous block (line 37) that it's for Linux and MacOs. All in all something like this:

Activate the virtual environment. On Linux and MacOs:
```bash
source .env/bin/activate
```
On Windows:
```bash
source .env/bin/activate
```


```bash
.env/Scripts/activate
```

Now you're ready to install 🤗 Transformers with the following command:

Expand Down