PROBoter icon indicating copy to clipboard operation
PROBoter copied to clipboard

flask-cors flask-restx install error

Open Wninayyds opened this issue 1 year ago • 1 comments

e204b1c4da84b59caac95332c824df6 look ! hi Is pip install flask-corsflask-restx written wrong? Because it should be pip install flask-cors flask-restx

Wninayyds avatar Dec 08 '23 10:12 Wninayyds

Yes, in the setup.py file under the pcb-analysis directory, there is a typo.

install_requires=[
    'werkzeug==2.1.2',
    'flask',
    'flask-cors'
    'flask-restx',
    'tensorflow',
    'opencv-python-headless',
    'pytesseract',
],

There needs to be a comma after 'flask-cors'

tqamarVT avatar May 11 '24 23:05 tqamarVT