Skip to content

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 matplotlib

You 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.

Clone this wiki locally