Thursday, January 3, 2019
Install and manage anaconda in windows
conda commands
list of environment
conda info --envs
create environment
conda create --name py36 python=3.6 pip numpy
activate py36
conda install matplotlib
to show packages installed
conda list --explicit
conda list --explicit > py36_reqs.txt
conda create --name py36_v2 -- file py36_reqs.txt
to remove environment
conda env remove --name pyside
to clone environment
conda create --name myclone --clone myenv
reference:
https://docs.conda.io/projects/conda/en/4.6.0/_downloads/52a95608c49671267e40c689e0bc00ca/conda-cheatsheet.pdf
https://kapeli.com/cheat_sheets/Conda.docset/Contents/Resources/Documents/index (new)
https://www.youtube.com/watch?v=9Sfs7Fbvtdk
Subscribe to:
Post Comments (Atom)
free online comma separating tool
https://delim.co/#
-
In my current company, I'm using Visual Paradigm for my documentation task. If you go there site, you can either download community and ...
-
One of the functionality in our system is can able to generate a report using Jasper report. We have a Jasper server setup in another ip ad...
-
https://www.liquidweb.com/kb/how-to-install-nvm-node-version-manager-for-node-js-on-ubuntu-12-04-lts/
No comments:
Post a Comment