Skip to the content.

Environment

Here, you can find info on python libraries for Data Management Systems.

Create a Python/Conda Environment

If you are a Pure-Python user do:

python3 -m venv my_env

Check venv for further reference.

If you are Conda user do:

conda create -n my_env python=3.x

Check conda create for further reference.

Libraries

This is a list of python libraries you need to install:

Week Library
2 (31-05) psycopg2
  sqlalchemy
  pandas
4 (13-06) pymongo
  requests
  beautifulsoup4
6 (28-06) pyspark
   

Install libraries

The requirements.txt contains Python libraries to install.

If you are a Pure-Python user do:

pip install -r requirements.txt

If you are a Conda user do:

conda install --file requirements.txt