Created
October 12, 2017 17:52
-
-
Save jkarnows/59dd3b72a748d37389c20c70b21e9548 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Using Mac OS X El Capitan 10.11.6 | |
sudo pip install virtualenv # Using Virtual Environment to contain dev environment | |
# [Navigate to folder rosetta-stone] | |
virtualenv rosetta # Create a virtual environment for this project | |
source rosetta/bin/activate # Start the virtual environment to install dev environment | |
pip install -U python # Install most recent Python | |
pip install numpy scipy matplotlib ipython pandas sympy nose # Install SciPy Stack | |
pip install sklearn # Install scikit-learn | |
pip install jupyter # Install Jupyter notebooks | |
pip install --upgrade tensorflow # Install most recent TensorFlow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment