Skip to content Skip to sidebar Skip to footer

Anaconda Import Existing Virtualenv

I want to import an existing virtual env, which I created using anaconda into another anaconda installation on a different distribution. I've tried creating a new one using the fol

Solution 1:

-p . cannot work because the directory must not exist already.

You probably want your env in /home/xiaolong/development/blog/env or something similar. So just do conda create -p ./env python=3.4.

Post a Comment for "Anaconda Import Existing Virtualenv"