How to import pandas and matplotlib on Python 3.5 IDLE - python

I am running the following code:
import pandas as pd
import matplotlib.pyplot as plt
from matplotlib import style
style.use('ggplot')
web_stats = {"Day":[1,2,3,4,5,6],
"Visitors":[43,53,34,45,64,34],
"Bounce_Rate":[65,72,62,64,54,66]}
df = pd.DataFrame(web_stats)
print(df)
It works just fine for me in the Jupyter notebook. But I am getting errors when I try to run it on IDLE, and I am wondering how to make it work there, too.
Here are the errors I'm getting:
Traceback (most recent call last):
File "C:\Users\theca\AppData\Local\Programs\Python\Python35-32\pandas.py", line 1, in
import pandas as pd
File "C:\Users\theca\AppData\Local\Programs\Python\Python35-32\pandas.py", line 2, in
import matplotlib.pyplot as plt
ImportError: No module named 'matplotlib'
I am new to Python, please to help. Thanks!

This is a duplicate of similar questions. The question is not really about IDLE, but about having multiple versions of python installed, or the same version installed more than once. The answer is that you have to install packages for each python executable that you want to use them with.
You traceback says that you ran IDLE with "C:\Users\theca\AppData\Local\Programs\Python\Python35-32" and that pandas is installed with it, started to run, tried to import matlib.pyplot as plt, and failed. You need to install matlib with the same python. Try
C:\Users\theca\AppData\Local\Programs\Python\Python35-32 -m pip install matlib

Have you actually installed pandas and matplotlib?
Your best bet would be to install Anaconda, which automatically installs some useful Python libraries for you.
If you don't want to install so many unnecessary libraries, you can install pandas via pip: pip install pandas, and matplotlib by pip install matplotlib. If you use pip you may have to install dependencies, so up to you.
EDIT: Your paths may also be setup wrongly. Check if the libraries are installed under the correct folder, C:\Users\theca\AppData\Local\Programs\Python\Python35-32\pandas.py, for example here. If not, you either have to move them or setup the path in python, like this:
import sys
sys.path.append("<the install path here>")
import pandas

I had the same problem : it is indeed a problem of having different versions of python installed. If your Idle is working with python 3.5, then you just have to do
pip3.5 install matplotlib

I think it is because you used Anaconda to install pandas and matplotlib. Thus, these two modules are installed only in Anaconda virtual environments. The Python IDLE cannot find modules in virtual env, it only search modules located in system paths.
So, you need to reinstall these modules in Windows cmd rather than Anaconda if you insist to use Python IDLE.
1. win + r
2. input cmd
3. pip install pandas, matplotlib
In all, I recommend to use Anaconda and the IDE in it named Spyder.

It appears as if you don't have matplotlib installed on your system.
Go to the command prompt and type the following (if you are using windows)-
py -m pip install matplotlib
py -m pip install pandas
Then try the your code again.

import os
try:
import Pandas as pd
except ImportError as e:
e = str(e)[15:]
e = e.strip().replace("'", "")
os.system('py -m pip install %s' % (e))
Try above code. In window cmd you have to type py and they python code or module to run it from cmd.

from matplotlib import pyplot as plt
import pandas as pd
web_stats = {"Day":[1,2,3,4,5,6],
"Visitors":[43,53,34,45,64,34],
"Bounce_Rate":[65,72,62,64,54,66]}
df = pd.DataFrame(web_stats)
df.plot(grid=True)
plt.show()
You can try above code. It works.

Installing Python Pandas on Windows With pip:
1- you should head over to our terminal or command prompt from where you can install Pandas. So go to your search bar on your desktop and search for cmd. An application called Command prompt should show up
2- and immediately Type in the command "pip install pandas". Pip is a package install manager for Python and Wait for the downloads to be over and once
3- you can type "import pandas as pd" in IDLE
4- and congratulations! you have pandas and other lib with this way:).

Related

No module named pandas

I am new to python and I am trying to make a simple stock market program using pandas to import the data. I have installed Anaconda which said that it installed pandas along with it, as well as Python 2.7. I use PyCharm as my IDE. When I run:
import pandas as pd
from pandas_datareader import data
I receive the error message
import pandas as pd
ImportError: No module named pandas
I am not sure why it is giving me this error message so any help would be greatly appreciated
When entering the command to run your file, make sure you specify which version of python you're using. For example, instead of python filename.py, use python3 filename.py or python2 filename.py
Try to install it using sudo ...
sudo pip3 install pandas
for ubuntu ... it worked got me. pip or pip3 .. as per your requirement.
You need to pip install pandas and things will work.
Your issue is that pandas is not installed locally on your computer. Luckily, this is a simple task to accomplish by opening up either a Terminal or Command Prompt (depending on your OS), and typing in the command pip install pandas. This will install pandas and you will be good to go!
The issue is that Anaconda installs a Python version of its own, and likely the Python version is Python 3. When you use PyCharm IDE as your editor, you are using another version of Python (Python2). For my Mac, Anaconda's Python is installed under /anaconda3/bin and my default Python is installed under /usr/bin/python.
I recommend you either config PyCharm to use Anaconda's Python, or use Anaconda's Jupyter your project. Jupyter is arguably a stronger tool considering that you are doing data analytics task.
Also, for Anaconda's python, you shoud use conda install pandas instead of pip install pandas to install additional packages. This is not necessary this time since it's already installed.

Installing matplotlib on windows 10 python 3.6

HI I am following an install from a book "Python Crash Course" chapter 15 which directed me to install matplotlib via downloading from pypi and using the format
python -m pip install --user matplotlib-2.2.2-cp36-cp36m-win32.whl
This seems to go ok but reports at the end.
File "C:\Program Files (x86)\Python Community\Python 3.6.1\lib\decimal.py", line 3 in , from decimal import *
AttributeError: module 'numbers' has no attribute 'Number'
and when I enter an interactive shell:
import matplotlib
I get a ModuleNotFoundError
I have tried a matplotlib-2.2.2-cp36-cp36m-win32.whl and matplotlib-2.2.2-cp36-cp36m-win_amd64.whl both give the same error.
Could someone please let me know how to fix this?
I am answering my own question.
The issue was to do with a file called numbers.py residing in a folder that I have all my python files, wheel files etc.
I found the answer in stack overflow. I will link to this matplotlib - AttributeError: module 'numbers' has no attribute 'Integral'.
The file was stopping the install so I renamed it and reinstalled matplotlib and it now works.
Sorry but this was not obvious to me !
Try running cmd as administrator inside the python directory. Then execute:
pip3 install matplotlib-2.2.2-cp36-cp36m-win32.whl
Also make sure that you have all dependencies installed.
The code seems very specific and something may not be supported any more.
You could first uninstall the current version using:
pip uninstall matplotlib
and then try installing matplotlib as follows:
pip install matplotlib
providing that you have admin rights to do so.
Then you can import as: import matplotlib.pyplot as plt
It seems like you are installing the package on Python 2.
Try installing the library using:
py -3 -m pip install --user matplotlib
Assuming you are using Windows.
Try doing as below:
python -m pip install --user matplotlib

python module 'pandas' has no attribute 'plotting'

I am a beginner of Python. I follow the machine learning course of Intel. And I encounter some troubles in coding. I run the code below in Jupyter and it raises an AttributeError.
import pandas as pd
step_data = [3620, 7891, 9761,3907, 4338, 5373]
step_counts = pd.Series(step_data,name='steps')
print(step_counts)
AttributeError: module 'pandas' has no attribute 'plotting'
In your terminal type
pip install plotting.
Update your pandas version using following command
pip install --upgrade pandas
If you want to execute pip command directly in Jupyter notebook, run the following:
import sys
!{sys.executable} -m pip install --upgrade pandas
The above code makes sure that the package is installed for the same version of python installed with Jupyter notebook.
In some situations the below command also works:
!pip install --upgrade pandas
Updating pandas usually corrects this error. Hence update your version of pandas and the error should be solved. Additionally, your code snippet does work.

ModuleNotFoundError: No module named 'pandas'

I'm following a practical machine learning tutorial and I am already stuck on the second video. https://www.youtube.com/watch?v=JcI5Vnw0b2c&t=195s
import pandas as pd
import Quandl
df = Quandl.get('WIKI/GOOGL')
print(df.head())
When I run the same code as the man in the video, all I get is
ModuleNotFoundError: No module named 'pandas'
I'm on Windows 10 using Visual Studio 2017 and I already did pip install pandas. I have python 3.6.1 installed.
pip 9.0.1 from C:\Program Files\Anaconda3\lib\site-packages (python 3.6).
pandas (0.19.2).
Python 3.6.0 :: Anaconda 4.3.0 (64-bit)
I had a similar problem which I fixed by doing
pip3 install pandas
Instead of
pip install pandas
I had this problem as well and tried a few different things until I realized my python path under settings.json (python.pythonPath) was incorrect and pointing to the wrong directory. The path should be to where the Python.exe file is under programs.
To make sure that you're using the same pip as your python, execute the pip with whole path from python directory i.e.
C:\Program Files\Anaconda3\lib\site-packages (python 3.6)\pip install pandas
This will install the pandas in the same directory
Or C:\Python365\pip install pandas
Or C:\Python27\pip install pandas
Whichever Python you wand to use and install the pandas
If you want to use a specific version of Python in Windows cmd, just add the path of that Python in System Variables.
For python 3.7, type following in CMD:
CD C:\Users\[path]\Continuum\anaconda3\Lib\site-packages
then:
pip3 install pandas
In my case, I installed panda instead of pandas. My installation was missing the last letter s.
My problem was running pandas from an ipython shell. The error message from the original post kept cropping up, despite having pandas installed. Then I started reading messages (see below). Installing ipython in the virtual environment didn't help, BUT deactivating the virtual environment and activating it again did.
➜ ipython
/.../python3.10/site-packages/IPython/core/interactiveshell.py:887: UserWarning:
Attempting to work in a virtualenv. If you encounter problems, please install
IPython inside the virtualenv.
I think you can use conda update pandas and it should get the most current version for you dist.
Or, pip install --update pandas
Also in python 3 quandl will be lowercase.
Edit.. pandas in on ver. 0.21.0 currently.

ImportError: No module named 'pandas'

I am trying to learn pandas and I haven't been able to import it into my code.
I have looked at other answers on this site and none of them have worked.
I just installed anaconda and installed everything through conda.
Here is a sample script that I am trying to run.
import pandas as pd
writer = pd.ExcelWriter('farm_data.xlsx', engine='xlsxwriter')
df.to_excel(writer, sheet_name='Sheet1')
workbook = writer.book
worksheet = writer.sheets['Sheet1']
chart = workbook.add_chart({'type': 'column'})
And the error it kicks back.
Traceback (most recent call last):
File "C:\Users\thiet01\Documents\Python Scripts\new 1.py", line 1, in
import pandas
ImportError: No module named 'pandas'
If you need any more information, please let me know and I can provide it.
Thanks in advance for any help.
below solved my issue:
apt-get install python3-pandas
or
apt-get install python2-pandas
Font: https://ask.fedoraproject.org/en/question/36529/installing-python-pandas/
I had the same problem for a long time. Today I tried a whole day and it finally worked. Below is the steps how I did it. I don't have theory for why the problem exist and how it is solved. I just know the following steps helped me get pandas going.
A. download first and install miniconda using the following code:
bash Miniconda2-latest-MacOSX-x86_64.sh
B. create an env for your project using following code:
conda create --name trypandas numpy pandas jupyter
C. going to your env and try jupyter notebook with pandas using:
source activate trypandas
jupyter notebook
Note: my own experience indicates:
when I missed conda install jupyter, pandas only work in pure python environment, not in ipython nor in jupyter notebook;
after conda install jupyter, pandas works in jupyter notebook now.
the step B above installing jupyter together with numpy and pandas, there should not be a problem.
My trypandas in installed in ~/miniconda2/envs.
Here is the basic documentation on how to instal python packages.
For OS X and Linux users, the following command ought to work:
pip install pandas
Even I had same issue but this solved my problem-
sudo apt-get install python-pandas
To check if pandas is installed or not:
Open up a Python prompt by running the following:
python
At the prompt, type the following:
import pandas
print pandas.\__version__
This will print the installed version of pandas in the system
I wanted to add this as a comment but Im not special enough yet in the eyes of stackoverflow.
Some modules need to be separately installed into your libraries folder of your python directory.Using pip (https://pip.pypa.io/en/stable/) is helpful for this. Otherwise manually add the module to your library folder by installing the module at:
https://pypi.python.org/pypi/pandas/0.18.1/
running the setup through the command line ((pandas location)>setup.py install), and finally adding it to your python directory.
Hope this helps!
What worked for me was to make sure that I run the command sudo apt-get so you run as root to make sure I download python3 like below
sudo apt-get install python3
The reason you need to use sudo it's because environments such as Ubuntu lock the root automatically according to Wikihow
Then I used
sudo apt-get update
sudo apt-get upgrade
And then I used the pip install pandas
That worked for me. I hope that's helpful
For installing pandas you can also use following method in python3.
python3 -m pip install pandas
or
pip3 install pandas
Also if this still fails because of a build error
ERROR: Could not build wheels for scipy which use PEP 517 and cannot be installed directly
or takes a long time to install pandas, then try upgrading pip.
pip3 install --upgrade pip

Categories

Resources