I came up with your case. This is how I sort it out
- Install Anaconda
- Create a virtual environment –
conda create -n tensorflow
- Go inside your virtual environment – (on macOS/Linux:)
source activate tensorflow
(on Windows:activate tensorflow
) - Inside that install tensorflow. You can install it using
pip
- Finish install
So then the next thing, when you launch it:
- If you are not inside the virtual environment type –
Source Activate Tensorflow
- Then inside this again install your Jupiter notebook and Pandas libraries, because there can be some missing in this virtual environment
Inside the virtual environment just type:
pip install jupyter notebook
pip install pandas
Then you can launch jupyter notebook saying:
jupyter notebook
- Select the correct terminal python 3 or 2
- Then import those modules