I installed rllab successfully:
$ source activate rllab3
(rllab3) $ Python 3.5.2 :: Continuum Analytics, Inc.
(rllab3) $ import rllab
(rllab3) $
but when I try to import other libraries:
(rllab3) $ from rllab.algos.trpo import TRPO
from: can't read /var/mail/rllab.algos.trpo
(rllab3) $ from rllab import rllab
from: can't read /var/mail/rllab
I can understand why this happens. I defined the environment variable
export PYTHONPATH="${PYTHONPATH}:/home/b**/rllab3"
when I am trying to load it from spyder:
[] import rllab
Traceback (most recent call last):
File "<ipython-input-1-6bfd29d10263>", line 1, in <module>
import rllab
ModuleNotFoundError: No module named 'rllab'
I can't figure the problem. If the problem is with environment variable, can anyone help me to fix it? I can not find where were rllab is installed on my system (I installed it with anaconda)