My apologies in advance - I have read through multiple sites and tried multiple things, but am still having trouble.
On OSX. Am trying to execute "import pandas as pd" in a jupyter notebook with Python 3, but receive the following message: ModuleNotFoundError: No module named 'pandas'
I created a new conda environment
conda create -n py3x python=3
activated it
source activate py3x
then opened jupyter
jupyter notebook
Did not work.
Tried this, but that seemed to default to Python 2: ImportError: No module named 'pandas'
I've also tried (perhaps?) every iteration from the following: Using both Python 2.x and Python 3.x in IPython Notebook
I have python 3 in jupyter notebook now, but none of the packages from anaconda. I also tried updating Anaconda (had already done Anaconda3 graphical install)
conda update anaconda
And that just said "All requested packages already installed"
Any further thoughts on terminal command lines to help would be much appreciated.