Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 957 Bytes

File metadata and controls

36 lines (25 loc) · 957 Bytes

Data Handling in Python Workshop

How to create the environment?

  1. Clone or download the Github repository.
  2. Install Miniconda or Anaconda on your Linux or Windows machine or use FASRC Cannon cluster.
  3. Create a Conda environment for this course using the following command,
conda env create -f py_course.yml
  1. Activate the newly create Conda environment (py_course) by,
conda activate pycourse
  1. Install Jupyter Notebook (or Jupyter Lab) on your machine or use FASRC Open OnDemand interface.
pip install jupyter
  1. Run the Jupyter Notebook and open the PyDataCourse.ipynb file.

  2. On FASRC Cluster Terminal:

module load Anaconda3  (skip on your laptop)
conda create --name pycourse python=3.11
source activate pycourse
pip install jupyter vprof snakeviz numpy perfplot pandas
conda install pytables