I imported an anaconda environment from another machine. I want to install the packages from imported environment into root or make the imported environment as default. Is there an
Solution 1:
First export the environment from one machine:
$ conda envexport -n myenv -f myenv.yml
Then create a new environment from myenv.yml on the other machine:
$ conda env create -f myenv.yml
To use this environment as default, add source activate myenv to your .bashrc.
Share
Post a Comment
for "Anaconda Import Packages From Another Environment"
Post a Comment for "Anaconda Import Packages From Another Environment"