File tree Expand file tree Collapse file tree 1 file changed +6
-20
lines changed Expand file tree Collapse file tree 1 file changed +6
-20
lines changed Original file line number Diff line number Diff line change @@ -28,32 +28,18 @@ best for learning new languages.
28
28
29
29
## Resources
30
30
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 )
32
32
* [ JavaScript<->Python cheatsheet] ( https://github.com/LambdaSchool/CS-Wiki/wiki/Javascript-Python-cheatsheet )
33
33
* [ How to read Specs and Code] ( https://github.com/LambdaSchool/CS-Wiki/wiki/How-to-Read-Specifications-and-Code )
34
34
* [ Python 3 standard library] ( https://docs.python.org/3.6/library/ )
35
35
36
36
## Getting started
37
37
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
+ ```
57
43
58
44
## Goals
59
45
You can’t perform that action at this time.
0 commit comments