marvin-python-toolbox icon indicating copy to clipboard operation
marvin-python-toolbox copied to clipboard

It's not possible to install with Anaconda

Open lucasbm88 opened this issue 8 years ago • 2 comments

When trying to install Marvin toolbox with Python Anaconda an error is being thrown when running the command mkvirtualenv

lucasbm88 avatar Oct 21 '17 16:10 lucasbm88

Any error log to help?

takabayashi avatar Nov 01 '17 20:11 takabayashi

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...

takabayashi avatar Nov 24 '17 04:11 takabayashi