0

I just installed "Pandas" in python using "pip install pandas" but it keeps posting a error about another module called "ctypes".

Error:

enter image description here

I have no idea what to do.

Anurag Dabas
  • 23,866
  • 9
  • 21
  • 41
TechDash
  • 7
  • 3
  • 8
  • 1
    Welcome to Stack Overflow. Please follow the [tour] and read [ask]. Right now, the best we can tell you is that something is wrong with your code in the `data_dump.py` file. We can only tell you anything specific about the code, if you show us the code. – Karl Knechtel Mar 29 '21 at 14:41
  • 1
    https://stackoverflow.com/questions/56724023/oserror-winerror-193-1-is-not-a-valid-win32-application-when-trying-to-imp[PLEASE SEE THIS: ANSWER FOR YOURQUESTION][1] – NAGA RAJ S Mar 29 '21 at 14:43
  • Thank you it worked. – TechDash Mar 30 '21 at 10:23

1 Answers1

0

Unless I don't understand your question correctly, you need to run your application through a virtual env. if you are using conda, conda activate ./your-venv, if pip, your-venv\Scripts\activate

DarkFantasy
  • 240
  • 3
  • 16