Skip to content
This repository has been archived by the owner on Nov 13, 2019. It is now read-only.

Create a requirements.txt file #59

Open
kevinxin90 opened this issue Dec 11, 2018 · 0 comments
Open

Create a requirements.txt file #59

kevinxin90 opened this issue Dec 11, 2018 · 0 comments

Comments

@kevinxin90
Copy link
Contributor

#Create a conda environment
conda create --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
conda env export > .yml

#For other person to use the environment
conda env create -f .yml

@kevinxin90 kevinxin90 added this to the Code Refactor and Testing milestone Dec 11, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant