Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
tips:anaconda [2018/07/31 14:45] – [Tensorflow GPU] scipio | tips:anaconda [2022/11/04 08:21] (current) – removed sscipioni | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Anaconda ====== | ||
- | ===== Install ===== | ||
- | |||
- | Download from [[https:// | ||
- | |||
- | < | ||
- | bash Anaconda3-5.1.0-Linux-x86_64.sh | ||
- | </ | ||
- | |||
- | For zsh integration edit .zshrc | ||
- | < | ||
- | export PATH="/ | ||
- | POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(anaconda virtualenv dir vcs) | ||
- | </ | ||
- | ===== Update ===== | ||
- | |||
- | < | ||
- | conda update conda | ||
- | conda update anaconda | ||
- | conda update python | ||
- | conda update --all | ||
- | </ | ||
- | |||
- | ===== Tensorflow GPU ===== | ||
- | |||
- | [[https:// | ||
- | |||
- | Create virtual env | ||
- | < | ||
- | conda create --name tensorflow | ||
- | </ | ||
- | |||
- | List virtual environments | ||
- | < | ||
- | conda env list | ||
- | </ | ||
- | |||
- | Activation | ||
- | < | ||
- | source activate tensorflow | ||
- | </ | ||
- | |||
- | Install tensorflow-gpu, | ||
- | < | ||
- | conda install tensorflow-gpu | ||
- | #conda install -c conda-forge opencv | ||
- | pip install python-opencv | ||
- | </ | ||
- | |||
- | List packages | ||
- | < | ||
- | conda list -n tensorflow | ||
- | </ | ||
- | |||
- | Jupyter kernel | ||
- | < | ||
- | conda install ipykernel | ||
- | python -m ipykernel install --user --name tf-gpu --display-name " | ||
- | < |