-
Notifications
You must be signed in to change notification settings - Fork 38
/
check_install.py
executable file
·54 lines (42 loc) · 1.17 KB
/
check_install.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/env python3
print('A Network Tour of Data Science: Python installation test')
import os
import sys
major, minor = sys.version_info.major, sys.version_info.minor
if major is not 3:
raise Exception('please use Python 3, you have Python {}.'.format(major))
try:
import numpy
import scipy
import matplotlib
import sklearn
import requests
import facebook
import tweepy
import pandas
import xlrd
import xlwt
import tables
import sqlalchemy
import statsmodels
import sympy
import autograd
import numba
import Cython
import seaborn
import ggplot
import altair
import bokeh
os.environ['KERAS_BACKEND'] = 'theano' # Easier for Windows users.
import keras
import theano
import tensorflow
import jupyter
import IPython, ipykernel
except:
print('Your installation misses a package.')
print('Please look for the package name below and install it with your '
'package manager (conda, brew, apt-get, yum, pacman, etc.) or pip.')
raise
print('You did successfully install Python {}.{} and '
'most of the Python packages we will use.'.format(major, minor))