Skip to content

Commit e14400c

Browse files
authored
Merge pull request #3 from ravwojdyla/rav/numpy_gitignore
NumPy build requirement + gitignore
2 parents 66b0162 + 75f9a72 commit e14400c

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

.gitignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
.DS_Store
2+
.ipynb_checkpoints
3+
node_modules
4+
/.bazelrc
5+
/.tf_configure.bazelrc
6+
/bazel-*
7+
/bazel_pip
8+
/tools/python_bin_path.sh
9+
/pip_test
10+
/_python_build
11+
*.pyc
12+
__pycache__
13+
*.swp
14+
.vscode/
15+
cmake_build/
16+
.idea/**
17+
/build/
18+
[Bb]uild/
19+
Pods
20+
Podfile.lock
21+
*.pbxproj
22+
*.xcworkspacedata
23+
xcuserdata/**
24+
dist/
25+
tensorflow_data_validation.egg-info/
26+
tensorflow_data_validation/anomalies/_pywrap_tensorflow_data_validation.so
27+
tensorflow_data_validation/anomalies/pywrap_tensorflow_data_validation.py
28+
29+
# Android
30+
.gradle
31+
.idea
32+
.project
33+
*.iml
34+
local.properties
35+
gradleBuild

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ pip install tensorflow-data-validation
4141

4242
To compile and use TensorFlow Data Validation, you need to set up some prerequisites.
4343

44+
#### Install NumPy
45+
46+
If NumPy is not installed on your system, install it now following [these
47+
directions](https://www.scipy.org/scipylib/download.html).
48+
4449
#### Install Bazel
4550

4651
If bazel is not installed on your system, install it now by following [these

0 commit comments

Comments
 (0)