Skip to content

Commit 77fbef5

Browse files
committed
Remove references to pipenv from README
1 parent 4510caa commit 77fbef5

File tree

1 file changed

+6
-20
lines changed

1 file changed

+6
-20
lines changed

README.md

Lines changed: 6 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -28,32 +28,18 @@ best for learning new languages.
2828

2929
## Resources
3030

31-
* [Installing Python and pipenv](https://github.com/LambdaSchool/CS-Wiki/wiki/Installing-Python-3-and-pipenv)
31+
* [Installing Python 3](https://github.com/LambdaSchool/CS-Wiki/wiki/Installing-Python-3)
3232
* [JavaScript<->Python cheatsheet](https://github.com/LambdaSchool/CS-Wiki/wiki/Javascript-Python-cheatsheet)
3333
* [How to read Specs and Code](https://github.com/LambdaSchool/CS-Wiki/wiki/How-to-Read-Specifications-and-Code)
3434
* [Python 3 standard library](https://docs.python.org/3.6/library/)
3535

3636
## Getting started
3737

38-
1. Make sure you have Python 3 and pipenv installed.
39-
40-
2. Go to the directory with the `Pipfile` and run
41-
```
42-
pipenv install
43-
```
44-
45-
3. After the install completes, run
46-
```
47-
pipenv shell
48-
```
49-
This will get you into the virtual environment. At this point, you should be
50-
able to run Python 3 by just running `python`:
51-
```
52-
$ python --version
53-
Python 3.6.5
54-
```
55-
56-
You can exit the virtual environment by typing `exit`.
38+
Make sure you have Python 3 installed by running:
39+
```
40+
$ python --version
41+
Python 3.6.5
42+
```
5743

5844
## Goals
5945

0 commit comments

Comments
 (0)