redianmarku / YouTube-Bot

GNU General Public License v3.0
42 stars 59 forks source link

File "/data/data/com.termux/files/home/YouTube-Bot/yt.py", line 88, in <module> with open(r'data\comments.txt', 'r') as f: FileNotFoundError: [Errno 2] No such file or directory: 'data\\comments.txt' #4

Open hackstars101 opened 4 years ago

hackstars101 commented 4 years ago

I am getting this error File "/data/data/com.termux/files/home/YouTube-Bot/yt.py", line 88, in with open(r'data\comments.txt', 'r') as f: FileNotFoundError: [Errno 2] No such file or directory: 'data\comments.txt'

redianmarku commented 4 years ago

You are on termux android, so termux is a linux terminal and in linux we use / and no . All you need to do is to convert line 88 from "with open(r'data\comments.txt', 'r') as f:" to "with open(r'data/comments.txt', 'r') as f:"