-
Notifications
You must be signed in to change notification settings - Fork 0
Setting Up Your Environment
Al Va edited this page Mar 22, 2024
·
1 revision
Setting Up Your Environment Setting working directory YOURPATH import os os.chdir('YOURPATH') # Set working directory os. getcwd() You’ll need pandas and other Python libraries, which you can install with pip
python3 -m pip install requests pandas matplotlib -- Within the [Jupyter notebook](https://jupyter.org/), this command looks as follows !pip install requests pandas matplotlibYou can also use the Conda package manager conda install requests pandas matplotlib Since we’re using the Anaconda distribution, then you’re good to go! Anaconda already comes with pandas and Jupyter notebook installed.
100 Basic Python Codes & Solutions for Aspiring Data Scientists.