DataScience Playground to test out various AI/ML ideas.
- active conda environment
conda activate mlp - start Jupyter Notebook environment:
jupyter lab --port=8888 --no-browser --NotebookApp.token="local-token"
- Create new conda env:
conda create --name data-science-playground python=3.10 - Activate conda new env:
conda activate data-science-playground - Install tensorflow dependencies:
conda install -c apple tensorflow-deps - Install Apple Tensorflow dependencies:
pip install tensorflow-macos tensorflow-metal - Add Jupyter to environment:
conda install -c conda-forge -y jupyter - Install basic Python dependencies:
conda install pandas numpy