Skip to content

Commit

Permalink
Use inspect to avoid virtual env custom site package pypa/virtualenv#228
Browse files Browse the repository at this point in the history
  • Loading branch information
eerwitt committed Jan 7, 2016
1 parent 97522f0 commit 8d6a6c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/g3doc/get_started/os_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ The exact location of the Python library depends on your system, but is usually
You can find out the directory with the following command:

```bash
$ python -c 'import site; print("\n".join(site.getsitepackages()))'
$ python -c 'import os; import inspect; import tensorflow; print(os.path.dirname(inspect.getfile(tensorflow)))'
```

The simple demo model for classifying handwritten digits from the MNIST dataset
Expand Down

0 comments on commit 8d6a6c3

Please sign in to comment.