Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: use of venv over --break-system-packages while installing dependencies #54

Merged
merged 3 commits into from
Oct 22, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 20 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,14 +143,16 @@ Before cloning the repository and running the tool, ensure that you have the fol
```bash
cd jee_counsellor
```
- Create a Virtual Environment:
```bash
python -m venv myenv
```
- Activating the virtual environment:
```bash
myenv\Scripts\activate
```
- Create a Virtual Environment:
- creating a virtual environment to avoid conflict with os distribution package manager:
```bash
python -m venv myenv
ksauraj marked this conversation as resolved.
Show resolved Hide resolved
```
- Activate the virtual environment:
- Activating that venv in the directory:
```bash
myenv\Scripts\activate
```

- Install the dependencies:
- Install the required dependencies using the following command:
Expand Down Expand Up @@ -180,14 +182,16 @@ git clone https://github.com/ksauraj/jee_counsellor.git
```bash
cd jee_counsellor
```
- Create a Virtual Environment:
```bash
python -m venv myenv
```
- Activating the virtual environment:
```bash
source myenv/bin/activate
```
- Create a Virtual Environment:

```bash
python -m venv myenv
```
- Activate the virtual environment:

```bash
source myenv/bin/activate
```
- Install the dependencies:

```bash
Expand Down