-
Notifications
You must be signed in to change notification settings - Fork 0
Miniconda getting started
conda --version
conda create -n <env-name>
conda create -n myenvironment python numpy pandas
conda info --envs
conda activate
conda activate myenvironment
conda install matplotlib
conda install --name myenvironment matplotlib
Channels are locations (on your own computer or elsewhere on the Internet) where packages are stored. By default, conda searches for packages in its default channels.
If a package you want is located in another channel, such as conda-forge, you can manually specify the channel when installing the package:
conda install conda-forge::numpy
conda update conda
conda create -n tf tensorflow conda activate tf
conda create -n tf-gpu-cuda9 tensorflow-gpu cudatoolkit=9.0 conda activate tf-gpu-cuda9
https://conda.io/projects/conda/en/latest/user-guide/getting-started.html
https://docs.anaconda.com/free/anaconda/applications/tensorflow/