Skip to content

Instantly share code, notes, and snippets.

View hanifa2102's full-sized avatar

han hanifa2102

View GitHub Profile
@hanifa2102
hanifa2102 / condaenv.txt
Created February 18, 2019 13:06 — forked from pratos/condaenv.txt
To package a conda environment (Requirement.txt and virtual environment)
# 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