To be sure you are not having multiple Python versions that are confusing, you should run following commands:
Hello, if you still haven't solved it, I would ask you to check the version of your python, using the command "python -version" in your cmd, and then install the plugin using the same cmd as well, do this through anaconda prompt, make it be installed in an instance to use only anaconda if I'm not mistaken. After checking your python version, open your script using visual studio and if you are developing on a notebook, change the python version in the upper right corner, to a version greater than or equal to the one installed
To get pip to work on your cmd, try reinstalling your python by checking "add python version to PATH".
Hope to help!
Thanks @ josehenriquediasferreira-1833
What also helped me was to use wheel to distribute it:
pip install wheel
pip install pandas
I was trying to import this lib as well to use some functions like nunique Pandas dataframe and run into the similar error:
F:\> pip install pandas
Collecting pandas
c:\python27\lib\site-packages\pip\_vendor\requests\packages\urllib3\util\ssl_.py
:90: InsecurePlatformWarning: A true SSLContext object is not available. This pr
events urllib3 from configuring SSL appropriately and may cause certain SSL conn
ections to fail. For more information, see https://urllib3.readthedocs.org/en/la
test/security.html#insecureplatformwarning.
error: invalid command 'bdist_wheel'
F:\>python tweet_fetcher.py
Traceback (most recent call last):
File "tweet_fetcher.py", line 1, in <module>
import pandas
ImportError: No module named pandas