AbdeslemSmahi / NetflixChecker

a mass account Netflix checker using Proxy
90 stars 50 forks source link

Error please fix it #17

Open Magicmk330 opened 2 years ago

Magicmk330 commented 2 years ago

It's showing -

ProgressBar.init() got an unexpected keyword argument 'max_value' An error occurred.. Saving progress...

Lunar808 commented 2 years ago

pip3 install prograssbar2

massimodeg commented 1 year ago

@Can you explain to me how to use it?

Lunar808 commented 1 year ago

@can you explain to me how to use it?

execute it on terminal, or cmd if you're using Windows(taking to account you installed python) pip is the package installer that comes with python, progressbar2 is the package that you're missing and that's the reason you've got this error.

It's pretty straight forward. your question tells me you probably don't know a lot of python(sorry if I'm mistaken, don't mean to be rude.) so I recommend you to learn a bit, it will help you fix this problems with ease and even contribute to projects in github like this project.

massimodeg commented 1 year ago

yes, you guessed it, i don't know python, if you could explain how to use it, you would help me a lot...i just started studying python

Lunar808 commented 1 year ago

yes, you guessed it, i don't know python, if you could explain how to use it, you would help me a lot...i just started studying python

I pretty much explained.

pip3 install prograssbar2 run in terminal(or cmd if using windows) pip3 = python package manager install - sub-command to install package(install "enter package") progressbar2 - the package itself that you're missing, and that is the reason you have this error.

good luck with learning python, it's a great scripting language and very useful overall. P.S search google about pip, it will help you tremendously in the future. it's mandatory for python developing.