We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b30fa3 commit e7c8a0cCopy full SHA for e7c8a0c
2 files changed
Dockerfile
@@ -0,0 +1,10 @@
1
+FROM python:3.6-buster
2
+LABEL maintainer="codyzacharias@pm.me"
3
+
4
+WORKDIR /root
5
6
+RUN git clone --depth=1 https://github.com/twintproject/twint.git && \
7
+ cd /root/twint && \
8
+ pip3 install . -r requirements.txt
9
10
+CMD /bin/bash
README.md
@@ -63,6 +63,12 @@ pip3 install --user --upgrade git+https://github.com/twintproject/twint.git@orig
63
pipenv install git+https://github.com/twintproject/twint.git#egg=twint
64
```
65
66
+### March 2, 2021 Update
67
68
+**Added**: Dockerfile
69
70
+Noticed a lot of people are having issues installing (including me). Please use the Dockerfile temporarily while I look into them.
71
72
## CLI Basic Examples and Combos
73
A few simple examples to help you understand the basics:
74
0 commit comments