Go to https://github.com/ivan-bilan/Tensorflow-for-NLP-Tutorials Press: "Clone and Download"
Navigate to the folder you want to install the project in and do:
git clone https://github.com/ivan-bilan/Tensorflow-for-NLP-Tutorials.git
Install Jupyter Notebook
pip3 install jupyter
If you use PyCharm, simply use the Start button on the main project file tensorflow_basics.ipynb and copy the generated URL with the security token, e.g.:
http://127.0.0.1:8888/?token=11cff7e3126674b2cdd8093a1xxx954a67
.
Open the URL in your browser. That's it!
Run from terminal:
jupyter notebook
it will navigate to your home folder, go to the project folder using the Jupyter file browser.
Now let's install tensorflow and tflearn.
If you have your own laptop with you with sudo access, just run there commands in your terminal:
pip3 install tensorflow
pip3 install tflearn
pip3 install numpy
pip3 install pandas==0.19.2
Install pip packages only for your local user:
pip3 install --user tensorflow
pip3 install --user tflearn
pip3 install --user numpy
pip3 install --user pandas==0.19.2
If you have PyCharm installed, just do the following:
File > Project xx > Project Interpreter > Select the "+" on the right top side > search for ternsorflow > press "Install Package"
Should work without any errors. Do the same for tflearn, numpy and pandas.
If you want to skip local installation, use cocalc.com sign-up with GitHub/Google
- create new project
- choose JupyterNotebook as type
- go to "Kernel" menu, and choose Python 3 (Anaconda)
Now you have an IpythonPython Notebook with tensorflow installed and running in the cloud.