You get this because you use Anaconda for Jupyter laptops. So just do conda install pandas restart your jupyter notebook and restart your camera. It should work. If you are trying this in a virtual environment, try this
conda create -n name_of_my_env python This will create a minimal environment in which only Python will be installed. To put yourself in this environment, run:
2 source activate name_of_my_env On Windows, the command: activate name_of_my_env The last required step is to install pandas. This can be done using the following command:
conda install pandas To install a specific version of pandas:
conda install pandas=0.20.3
To install other packages, for example IPython:
conda install ipython To install the full Anaconda distribution:
conda install anaconda
If you need packages that are available for pip but not conda, then install pip, and then use pip to install these packages:
conda install pip pip install django Installing from PyPI Pandas can be installed via pip from PyPI.
pip install pandas Install using ActivePython
Hope this helps.
source share