Skip to content

Commit 423f34f

Browse files
authored
Update README.md
1 parent e042e22 commit 423f34f

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,17 @@ You can checkout [Matplotlib's documentation](https://matplotlib.org) for more i
132132
print(matplotlib.get_configdir())
133133
```
134134
135-
In my case it returned ```/home/mce/.config/matplotlib```
135+
In my case it returned ```/home/mce/.config/matplotlib``` on Ubuntu and ```C:\Users\User\.matplotlib``` on Windows. Please verify the location of matplotib configdir as the location may differ for different users depending on how the matplotlib package was installed.
136136

137137
* You should get back something like ```/home/mce/.config/matplotlib```. You would then put the ```*.mplstyle``` files in ```/home/mce/.config/matplotlib/stylelib/``` (you need to create the stylelib directory):
138-
138+
* For Ubuntu
139139
```python
140140
cp styles/*.mplstyle ~/.config/matplotlib/stylelib/
141141
```
142+
* For Windows
143+
```python
144+
cp styles/*.mplstyle ~/.matplotlib/stylelib/
145+
```
142146

143147
2. Using different fonts:
144148

0 commit comments

Comments
 (0)