You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/README.md
+20-5Lines changed: 20 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,22 +24,37 @@ Also, the Tweepy library aims to be a _thin layer_ between your code and the Twi
24
24
25
25
So this website aims at making Tweepy and Twitter API easier to use. With additional support by linking to docs and Twitter policies.
26
26
27
+
Note that is guide was written main for Linux and macOS systems, to some commands will not work on Windows (in particular any shell commands).
28
+
27
29
28
30
## Install Tweepy
29
31
32
+
If you are new to Python or virtual environments, read through this guide for more background on the instructions below - [Setup a Python 3 virtual environment](https://gist.github.com/MichaelCurrin/3a4d14ba1763b4d6a1884f56a01412b7)
33
+
34
+
35
+
### System dependencies
36
+
30
37
Install [Python 3](python.org/)
31
38
32
-
Create a virtual environment, as it is recommended to install Python packages inside a virtual
33
-
environment. Use the `venv` tool which built-in for Python 3.
39
+
### Install project dependencies
34
40
35
-
```sh
41
+
```bash
36
42
cd my-project
43
+
```
44
+
45
+
Create a virtual environment. Here we use the `venv` tool which built-in for Python 3, but you can use something else.
0 commit comments