## How to use pip inside the anaconda environment
Some times, it looks like the pip installer used by default use the system module folder to store python modules.
So, to ensure the correct installation inside the environment, you can call splicitely the pip binary inside the environment location.
Something like this:
```
$ ~/anaconda/envs/[venv_name]/bin/pip install [package_name]
```