Skip to content

Commit 91ba409

Browse files
committed
Fix typos
1 parent c9907e0 commit 91ba409

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

install-python.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ C:\users\username\> python -V
3838
Python 3.10.1
3939
```
4040

41-
If you see this and the reported version number is sufficently high (often 3.9 or higher), **you are good to go**.
41+
If you see this and the reported version number is sufficiently high (often 3.9 or higher), **you are good to go**.
4242

4343
#### 2.7? Uh oh, your Python is badly outdated!
4444

@@ -65,7 +65,7 @@ C:\users\username\> python -V
6565
Python was not found; run without arguments to install from the Windows Store...
6666
```
6767

68-
Looks like you do not have Python at all. **You will need to continue below to install Python 3**. When you see this specific error message, it means that Python is not installed. What is running is a shim program meant to help you install Python 3 from the Windows Store (one option below). You can select this option by simplying typing `python` and following along in the UI.
68+
Looks like you do not have Python at all. **You will need to continue below to install Python 3**. When you see this specific error message, it means that Python is not installed. What is running is a shim program meant to help you install Python 3 from the Windows Store (one option below). You can select this option by simplifying typing `python` and following along in the UI.
6969

7070

7171
### Step 3. You need Python, install it on Windows
@@ -142,10 +142,10 @@ The Windows Store version of Python is a good option. It's the easiest way to ge
142142

143143
**Install steps - Chocolatey package manager on Windows**
144144

145-
1. Install Chacolatey - [**steps here**](https://docs.chocolatey.org/en-us/choco/setup)
145+
1. Install Chocolatey - [**steps here**](https://docs.chocolatey.org/en-us/choco/setup)
146146
2. Open an **[administrator command prompt](https://www.howtogeek.com/194041/how-to-open-the-command-prompt-as-administrator-in-windows-8.1/)**
147147
3. Install the latest Python: `choco install python`
148-
4. Peridocially check for a new release: Open admin command prompt and run `choco upgrade python`
148+
4. Periodically check for a new release: Open admin command prompt and run `choco upgrade python`
149149
5. Close all terminal and command prompt windows and reopen one (to refresh the path)
150150
6. Run `python -V` in a new terminal window to verify you have Python now working
151151

@@ -161,7 +161,7 @@ The Windows Store version of Python is a good option. It's the easiest way to ge
161161

162162
**Cons**
163163

164-
* Generally uses [conda environements](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html) rather than [Python's virtual environments](https://www.geeksforgeeks.org/python-virtual-environment/) - this can lead to a mismatch in instructions when Anaconda is not the primary tool used.
164+
* Generally uses [conda environments](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html) rather than [Python's virtual environments](https://www.geeksforgeeks.org/python-virtual-environment/) - this can lead to a mismatch in instructions when Anaconda is not the primary tool used.
165165
* Packages available here often lag behind in release schedule from PyPI / pip
166166
* Often one whole version behind on Python (e.g. 3.9 rather than 3.10)
167167

@@ -197,7 +197,7 @@ $ python3 -V
197197
Python 3.10.1
198198
```
199199

200-
If you see this and the reported version number is sufficently high (often 3.6 or higher), **you are good to go**.
200+
If you see this and the reported version number is sufficiently high (often 3.6 or higher), **you are good to go**.
201201

202202
#### 2.7? Uh oh, your Python is badly outdated!
203203

@@ -247,7 +247,7 @@ Looks like you do not have Python 3 at all. **You will need to continue below to
247247
1. Install Homebrew - [**steps here**](https://brew.sh/)
248248
2. Open a **[terminal](https://www.makeuseof.com/open-terminal-on-mac/)**
249249
3. Install the latest Python: `brew install python`
250-
4. Peridocially check for a new release: Open terminal and run `brew update` then `brew upgrade`
250+
4. Periodically check for a new release: Open terminal and run `brew update` then `brew upgrade`
251251
5. **CAREFUL**: Take careful note of any messages shown - sometimes you must [update your path](https://coolestguidesontheplanet.com/add-shell-path-osx/) (varies by default shell: bash, zsh, etc.) for this version to be located.
252252
5. Close all terminal windows
253253
6. Run `python3 -V` in a new terminal window to verify you have Python now working
@@ -289,7 +289,7 @@ The Python official installer can be found on **[python.org](http://python.org)*
289289

290290
**Cons**
291291

292-
* Generally uses [conda environements](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html) rather than [Python's virtual environments](https://www.geeksforgeeks.org/python-virtual-environment/) - this can lead to a mismatch in instructions when Anaconda is not the primary tool used.
292+
* Generally uses [conda environments](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html) rather than [Python's virtual environments](https://www.geeksforgeeks.org/python-virtual-environment/) - this can lead to a mismatch in instructions when Anaconda is not the primary tool used.
293293
* Packages available here often lag behind in release schedule from PyPI / pip
294294
* Often one whole version behind on Python (e.g. 3.9 rather than 3.10)
295295

@@ -327,7 +327,7 @@ $ python3 -V
327327
Python 3.10.1
328328
```
329329

330-
If you see this and the reported version number is sufficently high (often 3.6 or higher), **you are good to go**.
330+
If you see this and the reported version number is sufficiently high (often 3.6 or higher), **you are good to go**.
331331

332332
#### 2.7? Uh oh, your Python is badly outdated!
333333

@@ -397,7 +397,7 @@ Ubuntu manages it's installed software using **[apt](https://ubuntu.com/server/d
397397

398398
**Cons**
399399

400-
* Generally uses [conda environements](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html) rather than [Python's virtual environments](https://www.geeksforgeeks.org/python-virtual-environment/) - this can lead to a mismatch in instructions when Anaconda is not the primary tool used.
400+
* Generally uses [conda environments](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html) rather than [Python's virtual environments](https://www.geeksforgeeks.org/python-virtual-environment/) - this can lead to a mismatch in instructions when Anaconda is not the primary tool used.
401401
* Packages available here often lag behind in release schedule from PyPI / pip
402402
* Often one whole version behind on Python (e.g. 3.9 rather than 3.10)
403403

0 commit comments

Comments
 (0)