Python 3.6.5
Editor : Visual Studio Code
Version : 1.25.1
Distributor : canonical
Description : ubuntu 18.04 LTS
Release : 18.04
Codename : bionic beaver
Dependencies must be set up in an enviroment before using the project. Follow the following instructions for setting up the environment:
For pip:
python3 -m virtualenv <environment name>
source <environment name>/bin/activate
pip install -r requirements.txt
For Anaconda:
conda create -n <environment name>
source activate <environment name>
while read requirement; do conda install --yes $requirement; done < requirements.txt
University : Indian Institute of Information Technology, Allahabad
Course code : ISIM 732 C
Semester : 7
- All solutions of assignment problems are in Python3.
- Lab assignments are present in
Lab *
directories. - Every solution is properly documented using docstrings.