Created
December 9, 2018 21:14
-
-
Save sdaitzman/e95e714c42586b54a8eeecb612dc7475 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
# Imports | |
from IPython.display import clear_output | |
import os | |
import time | |
# Install Python libraries | |
!pip3 install pandas seaborn sympy beautifulsoup4 lxml pint scipy==1.1.0 numpy | |
# Removes code before re-downloading it | |
!rm -rf ./ModSimPy | |
!rm -rf ./modsim.py | |
# Grabs ModSimPy | |
!git clone https://github.com/AllenDowney/ModSimPy.git | |
!cp "ModSimPy/code/modsim.py" . | |
# Resets kernel to flush outdated libraries (especially SciPy) | |
clear_output() | |
print("Configured for ModSimPy. Restarting kernel.") | |
time.sleep(1) | |
os._exit(0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment