This folder contains instructions to get your computer set up for this course.
Order:
-
Start with macos.md or windows.md based on your operating system.
-
Next set up git using git.md.
-
And last, set up your ssh keys using ../git/03-ssh.md
-
Install python and node.
macOS:
brew install python brew install nodeUbuntu/WSL:
sudo apt-get update sudo apt-get install -y python3 python3-pip nodejs
follow the following steps to install packages:
If you see this error with pip3 install:
error: externally-managed-environment-
Make the config directory:
mkdir -p ~/.config/pip -
Create and edit
pip.conf:touch ~/.config/pip/pip.conf subl ~/.config/pip/pip.conf
-
Add this:
[global] break-system-packages = true
-
Save the file and verify: Run the following command:
pip3 config list
What you should see:
global.break-system-packages = true -
Install your package:
pip3 install pandas
Done!
By ChatGPT + Dhrumil