Skip to content
This repository has been archived by the owner on Sep 12, 2022. It is now read-only.

Latest commit

 

History

History
36 lines (29 loc) · 751 Bytes

README.md

File metadata and controls

36 lines (29 loc) · 751 Bytes

PYtureng

What is The PYtureng

PYtureng is A command line interface for using tureng.com

INSTALLATION

First of all install virtual environment for your PC (for Windows you need to download virtualenv: check http://pip.readthedocs.io/en/stable/installing/#do-i-need-to-install-pip)

apt-get install python3-pip
pip3 install virtualenv

Create a folder for your virtual environment

mkdir venv
cd venv
virtualenv myvenv

Activate your virtual environment

FOR LINUX:
source myvenv/bin/activate

FOR WINDOWS:
myvenv/Scripts/activate

To install requirements for project go to the base folder which has requirements.txt in it, open terminal and type

pip install -r requirements.txt