Created
February 13, 2023 23:56
-
-
Save raghu-ramesha/b8fea10f331cdb772efee80e250fc51b to your computer and use it in GitHub Desktop.
create_prep_env.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
conda create -y -n preprocessing_env python=3.8 | |
source /opt/conda/etc/profile.d/conda.sh | |
conda activate preprocessing_env | |
export PYTHONNOUSERSITE=True | |
conda install -y -c conda-forge pandas scikit-learn | |
pip install conda-pack | |
conda-pack |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment