Posts

Showing posts from March, 2018
Install tensorflow on ubuntu There are different mechanisms.              virtusalenv              "native" pip              docker              anaconda virtualenv is the recommended mechanism virtualenv is a virtual python environment isolated from other python development incapable of interfering with or being affected by other python programs on the same machine during the virtualenv installation process, you will install not  only tensorflow but also the packages that the tensorflow requires. To start working with tensorflow you simply need to activate the virtual enviornment. all in all, virtualenv provides a safe and reliable mechanism for installing and running tensorflow. Steps install pip,dev and virtualenv for python 2.7 sudo apt-get install python-pip python-dev python-virtualenv create a virtualenv environment inside home for python 2.7 virtualenv --system-site-packages tensorflow activate t