Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 414 Bytes

File metadata and controls

25 lines (17 loc) · 414 Bytes

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