/python-practice

Practice Python

Primary LanguagePythonMIT LicenseMIT

Python Practice

Practice Python.

Install

Create Python 3 version environment and activate it using virtualenv.

virtualenv venv --python=python3
. venv/bin/activate

Then, install libraries to setup environment.

pip install -r requirements.txt

If you want to store installed packages in requirements format, execute following command.

pip freeze > requirements.txt