Not initializing rpi_gpio

Starting to implement my roller shutters to my Home Assistant Environment.
But now I will get the follwing error mesages:

17-04-03 07:10:54 ERROR (MainThread) [homeassistant.setup] Not initializing rpi_gpio because could not install dependency RPi.GPIO==0.6.1 
17-04-03 07:10:54 ERROR (MainThread) [homeassistant.setup] Setup failed for rpi_gpio: Could not install all requirements. 
17-04-03 07:10:54 ERROR (MainThread) [homeassistant.setup] Unable to setup dependencies of switch.rpi_gpio. Setup failed for dependencies: rpi_gpio 
17-04-03 07:10:54 ERROR (MainThread) [homeassistant.setup] Unable to prepare setup for platform switch.rpi_gpio: Could not setup all dependencies. 
17-04-03 07:10:54 ERROR (MainThread) [homeassistant.components.switch] Error while setting up platform rpi_gpio 
Traceback (most recent call last): 
File "/srv/homeassistant/lib/python3.4/site-packages/homeassistant/helpers/entity_component.py", line 152, in _async_setup_platform None, platform.setup_platform, self.hass, platform_config, AttributeError: 'bool' object has no attribute 'setup_platform'

Any ideas?

First line:

Hello,

but how/where i can read the actual version of RPI.GPIO?
How i can install version 0.6.1 of RPI.GPIO?

thanks

Try $ pip3 install [module-name] (in your venv if used).

Thanks, now it works fine using:

sudo su -s /bin/bash homeassistant

source /srv/homeassistant/bin/activate

pip3 install https://pypi.python.org/packages/source/R/RPi.GPIO/RPi.GPIO-0.6.1.tar.gz

Thank you!