Skip to content

Commit 2e6dda6

Browse files
committed
updating grants ugly formatting
1 parent 429d60d commit 2e6dda6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

2 - Installing Modules/README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@ In this module, we are going to cover the first and second methods of installing
1313
PIP and PIP3 (python2 and python3 respectively) are package managers for python code. Most commonly they are used to install modules for working in Python however there are many command line utilities that are installed via pip as well. PIP is something you will use very often in your Python adventures!
1414

1515
## Virtual Environments
16+
1617
When working with multiple projects, you may find that you need different versions of particular modules. If you install modules into your native environment, then you may find conflicts between these. To get around this problem you can make use of virtual environments - these provide a self contained directory structure and other dependencies for your project.
1718

18-
To
19+
Assuming you have cloned this repository already, change to your local repository and then run
1920

20-
Assuming you have cloned this repository already, change to your local repository and then run "python3 -m venv .". This will create the virtual environment. TO activate it, run "./bin/activate" (Mac/Linux) or ".\Scripts\activate.bat" (Windows).
21+
`python3 -m venv .`
2122

23+
This will create the virtual environment. TO activate it, run `./bin/activate` (Mac/Linux) or `.\Scripts\activate.bat` (Windows).
2224

2325
## Our First Module Install
2426

0 commit comments

Comments
 (0)