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
| #!/bin/bash | |
| # Used to create a Anaconda virtual environment for CUDA and TensorFlow. | |
| # If you want to use this shell script, please read the blog. | |
| # https://bluesmilery.github.io/blogs/a687003b/ | |
| echo "" | |
| echo "This script is used to create a Anaconda virtual environment for CUDA and TensorFlow." | |
| echo "" | |
| read -p "Enter the name of Anaconda virtual environment: " ENV_NAME |
OlderNewer