marvin-python-toolbox
marvin-python-toolbox copied to clipboard
It's not possible to install with Anaconda
When trying to install Marvin toolbox with Python Anaconda an error is being thrown when running the command mkvirtualenv
Any error log to help?
To solve this problem just set the env variable VIRTUALENVWRAPPER_PYTHON to your own python installation (not provided by anaconda).
If you don't have a diferent python installation then install using sudo apt-get install python2.7-dev python-pip ipython
To set the env variable use:
echo "export VIRTUALENVWRAPPER_PYTHON=/usr/lib/python2.7" >> $HOME/.bash_profile
source $HOME/.bash_profile
and try again...