WebcrawlerFacebook for lecture "Big Data Analyseprojekt"
see also: https://www.tensorflow.org/install/pip
- virtualenv --system-site-packages -p python3 ./venv
- source ./venv/bin/activate # sh, bash, ksh, or zsh
- pip install --upgrade pip
- pip list # show packages installed within the virtual environment
After using Tensorflow, deactivate the virtual env: 5) deactivate # don't exit until you're done using TensorFlow
- pip inst all --upgrade tensorflow
- Verify install: python -c "import tensorflow as tf;print(tf.reduce_sum(tf.random.normal([1000, 1000])))"
If the above commands do not work, use the following:
- mkdir ts1
- cd ts2
- python3.7 -m venv .
- pip install --upgrade pip
- pip install tensorflow
Create virtualenv in Anaconda:
- conda create -n tensorenviron
- activate tensorenviron
- conda install tensorflow