Skip to content

Commit 69918f9

Browse files
Merge remote-tracking branch 'origin/main'
2 parents 8b18945 + e1f3c48 commit 69918f9

File tree

1 file changed

+32
-2
lines changed

1 file changed

+32
-2
lines changed

README.md

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ Dev is a multi-purpose tool designed to streamline your coding workflow and leve
5151
- Python 3.9+
5252

5353

54-
# Getting Started:
54+
# Getting Started
55+
## 1: Clone Dev locally
56+
5557
**Clone repo:**
5658
1: clone repo
5759
```bash
@@ -71,15 +73,43 @@ Get your google gemini API key from [here](https://makersuite.google.com/app/api
7173
export GOOGLE_API_KEY=YOUR_API_KEY
7274
```
7375

76+
## 2: Install Dev using pip (Recommended!)
77+
```bash
78+
pip install git+https://github.com/GitCoder052023/Dev
79+
```
80+
81+
7482
# Quick start
83+
## For those who cloned Dev locally
84+
7585
```python
76-
from Dev.Developer import Dev
86+
from Dev.Dev_Developer import Dev
7787

7888
assistant = Dev.Dev("YOUR GOOGLE GEMINI API KEY") # You can leave this as it is if you don't want to use debug, generate and other generation tools of Dev
7989

8090
assistant.generate("write a python code which can print 0 to 100")
8191
```
8292

93+
## For those who installed Dev using pip
94+
95+
```python
96+
from Dev_Developer import Dev
97+
98+
assistant = Dev.Dev("YOUR GEMINI API KEY") # You can leave this as it is if you don't want to use debug, generate and other generation tools of Dev
99+
100+
assistant.generate("write a python code which can print 0 to 100")
101+
```
102+
103+
## Important
104+
105+
**If you installed Dev through pip then import Developer and Manager like this:**
106+
107+
```python
108+
from Dev_Developer.Dev import Dev
109+
from Dev_Managers.User_manager import DB_manager
110+
from Dev_Managers.Auth_manager import DevAuth
111+
```
112+
83113
# Checkout Documentation of Dev
84114

85115
Click on this --> [Read Documentation](https://jovian.com/k-alam93899/Dev%20Documentation) link to read documentation of Dev

0 commit comments

Comments
 (0)