Skip to content
Snippets Groups Projects

Adapt Readme

Merged Nicola Gatto requested to merge adapt-readme into master
1 file
+ 12
1
Compare changes
  • Side-by-side
  • Inline
+ 12
1
@@ -73,4 +73,15 @@ output = instance.execute(inp)
# Access the result
print(output.result1)
print(output.result2)
```
\ No newline at end of file
```
## Troubleshooting
- **fatal error: numpy/arrayobject.h: No such file or directory** The numpy include files are not included in the global `/usr/include` directory. Usually, the missing files can be found in the directory `/usr/local/lib/python2.7/dist-packages/numpy/core/include/numpy`. If not, you can run a python script which outputs the location:
```python
import numpy
numpy.get_include()
```
After that you can copy the files to the global include directory:
```bash
cp -r /usr/local/lib/python2.7/dist-packages/numpy/core/include/numpy /usr/local/include
Loading