Voldrix / onlyfans-dl-2

OnlyFans content downloader v2
GNU General Public License v3.0
151 stars 23 forks source link

Update python shebang compatibility #67

Closed sxppro closed 1 year ago

sxppro commented 1 year ago

I had some issues with the requests package producing ModuleNotFoundError even though I had installed it. Since I'm using a conda virtual environment, it changes the python path and the current shebang points to the default system python path so any packages I install in a virtual environment aren't located.

I suggest you change it to #!/usr/bin/env python3 instead.

Voldrix commented 1 year ago

done