Skip to content

Instantly share code, notes, and snippets.

View gabriel19913's full-sized avatar
🏠
Working from home

Gabriel Aparecido Fonseca gabriel19913

🏠
Working from home
View GitHub Profile
@gabriel19913
gabriel19913 / condaenv.txt
Created May 24, 2019 16:50 — 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