How do you create a virtual environment for Python 3 (3.6+)?
To create and activate it:
python3 -m venv ~/somedir cd ~/somedir # Run the below on each new terminal session source ./bin/activate
In a clean environment, what libraries would you typically install for TensorFlow development?
pip install numpy pandas matplotlib scipy sklearn
How would you install and launch a jupyter notebook in a clean Python install?
“pip install jupyter”, then “jupyter notebook”