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

PYtureng | A Command line Interface For tureng.com Powered By Python

License

Notifications You must be signed in to change notification settings

iamnotagentleman/PYtureng

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:https://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