- Python 3.6.5
- Anaconda: https://docs.anaconda.com/anaconda/install/mac-os, link for setting up Anaconda in macOS
- create a directory inside
data/
titledlarge_files/
.- Add large datasets, for daily analysis in
large_files/
directory.
- Add large datasets, for daily analysis in
"Virtual environmets make it easy to cleanly separate different projects and avoid problems with different dependencies and version requiremetns across components."
- Go to your working directory and clone this repository
- Use the existing
environment.yml
to create your environmentconda env create -f environment.yml
- This command will install all the dependencies required for your project
conda create -n test-env python=3.6.5 anaconda
replacetest-env
with your own name- move to your working directory
- run
source activate test-env
to start the environment - use
conda list --export
to list the libraries installed so far in your environment. Similar topip freeze
- use
conda list --export > requirements.txt
to save the packages listed. - use
conda export env -n envName > envName.yml
to share your Conda environment with someone else. Choose your ownenvName
.
- use
- To install packages in this environment, use the following command:
conda install -n test-env xarray dask netCDF4 bottleneck