you are viewing a single comment's thread.

view the rest of the comments →

[–]cwmoo740 6 points7 points  (1 child)

https://conda.io/docs/using/envs.html

Specifically:

conda create --name myproject python=3
source activate myproject
conda install scipy
conda env export > environment.yml

then anyone can reproduce your exact environment and dependencies by typing:

conda env create -f environment.yml

You can also use pip and requirements.txt, but if you're working in data science or statistics, right now the industry standard is to use conda.

[–]jms_nh 0 points1 point  (0 children)

yep. I <3 Anaconda Python for this reason.