Last active
April 30, 2019 12:34
-
-
Save tmwatchanan/b08f5649108016a90584699ab93cea67 to your computer and use it in GitHub Desktop.
Conda commands for installing dependencies about OpenCV and Keras based on Ubuntu
This file contains hidden or 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
| # do check your nvidia driver version which is compatible with a cuda version | |
| # https://docs.nvidia.com/deploy/cuda-compatibility/index.html | |
| conda install -c anaconda cudatoolkit | |
| # and then instal your nvidia driver e.g. nvidia-driver-418 | |
| conda install -c conda-forge keras | |
| conda install -c anaconda tensorflow-gpu | |
| conda install scikit-image | |
| conda install -c conda-forge opencv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment