On Sunday, July 19, 2015 at 11:05:46 PM UTC-4, ryguy7272 wrote: > Hello experts. I odwnloaded Pandas, and put it here. > C:\Python34\Scripts\pandas-0.16.2 > > Then, I ran this in what most people call the c-prompt, but I call it the > 'Python 3.4.3 Shell' > "C:\Python34\Scripts\pandas-0.16.2>" "pip install 'setup.py'" > > It seems like everything ran fine, so I try this. > import pandas as pd > > Then I get this error. > Traceback (most recent call last): > File "<pyshell#12>", line 1, in <module> > import pandas as pd > ImportError: No module named 'pandas' > > Any idea what I'm doing wrong? > > > I tried to follow the instructions here. > https://pip.pypa.io/en/latest/installing.html > > > That doesn't work either. > python get-pip.py > SyntaxError: invalid syntax > > I won't even ask the most obvious question, because I guess it's impossible > to do. Rather, can someone please help me to get this working? > > Thanks.
Well, I got everything to install on the cmd window, but I still can't run anything in the Shell. Here's two simple examples. import numpy as np Traceback (most recent call last): File "<pyshell#0>", line 1, in <module> import numpy as np ImportError: No module named 'numpy' >>> import pandas as pd Traceback (most recent call last): File "<pyshell#1>", line 1, in <module> import pandas as pd ImportError: No module named 'pandas' According to what I saw in the cmd window, these two things were installed. Nevertheless, they don't run in the Shell. I guess I spend 95% of my time trying to import stuff, and about 5% of my time doing something interesting or useful with Python. -- https://mail.python.org/mailman/listinfo/python-list