I am trying to install packages with pip in Rodeo in Windows with:
import pip
pip.main(["install","gdal"])
It looks like it works, as console doesn´t give back me any errors. But when I try to import the package
>>> import gdal as asdf
ImportError: No module named 'gdal'
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-205-98f806a7d911> in <module>()
----> 1 import gdal as asdf
ImportError: No module named 'gdal'
It also happens with other packages. Any ideas? I think something is bad with the path... how can I tell pip where to install?
Sorry, I am new with python...