Created
November 30, 2016 07:01
-
Star
(162)
You must be signed in to star a gist -
Fork
(44)
You must be signed in to fork a gist
-
-
Save pratos/e167d4b002f5d888d0726a5b5ddcca57 to your computer and use it in GitHub Desktop.
Revisions
-
Prathamesh created this gist
Nov 30, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ # For Windows users# Note: <> denotes changes to be made #Create a conda environment conda create --name <environment-name> python=<version:2.7/3.5> #To create a requirements.txt file: conda list #Gives you list of packages used for the environment conda list -e > requirements.txt #Save all the info about packages to your folder #To export environment file activate <environment-name> conda env export > <environment-name>.yml #For other person to use the environment conda env create -f <environment-name>.yml This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ # For Windows users