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
After that initialize and activate python virtualenv somewhere
36
36
37
37
Linux/MacOS
38
-
```
38
+
```sh
39
39
virtualenv -p python leetcode-anki
40
40
. leetcode-anki/bin/activate
41
41
```
42
42
43
43
Windows
44
-
```
44
+
```sh
45
45
python -m venv leetcode-anki
46
46
.\leetcode-anki\Scripts\activate.bat
47
47
```
48
48
49
-
Then initialize session id variable. You can get it directly from your browser (if you're using chrome, cookies can be found here chrome://settings/cookies/detail?site=leetcode.com)
49
+
Then initialize necessary environment variables. You can get it directly from your browser cookies (`csrftoken` and `LEETCODE_SESSION`)
0 commit comments