Skip to content

Commit fea39c6

Browse files
author
Roberto De Ioris
authored
Update PlottingGraphsWithMatplotlibAndUnrealEnginePython.md
1 parent d128fa5 commit fea39c6

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

tutorials/PlottingGraphsWithMatplotlibAndUnrealEnginePython.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,26 @@ Re-start your project and in the Edit/Plugins menu you will be able to enable th
3636

3737
## pip-installing matplotlib
3838

39-
If you installed the embedded distribution, just move to he Plugins/UnrealEnginePython/Binaries/Win64
39+
If you installed the embedded distribution, just move to the Plugins/UnrealEnginePython/Binaries/Win64 directory in your terminal, and run:
40+
41+
```sh
42+
./python.exe -m pip install matplotlib
43+
```
4044

4145
![pip install matplotlib](https://github.com/20tab/UnrealEnginePython/blob/master/tutorials/PlottingGraphsWithMatplotlibAndUnrealEnginePython_Assets/pip_install.png)
4246

47+
If you are using a system python installation (or you are on Linux/Mac) just run:
48+
49+
```sh
50+
pip3 install matplotlib
51+
```
52+
53+
or (based on your config)
54+
55+
```sh
56+
pip install matplotlib
57+
```
58+
4359
## Testing matplotlib in Unreal Engine: generating a graph-texture
4460

4561
```python

0 commit comments

Comments
 (0)