File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -204,6 +204,7 @@ All contributions are welcome:
204204- [ Virtual Environment] ( #virtual-environment )
205205 - [ virtualenv] ( #virtualenv )
206206 - [ pipenv] ( #pipenv )
207+ - [ anaconda] ( #anaconda )
207208
208209## The Zen of Python
209210
@@ -4643,3 +4644,26 @@ Usage:
46434644Find more information and a video in [docs.pipenv.org](https:// docs.pipenv.org/ ).
46444645
46454646[* Return to the Top* ](# python-cheatsheet)
4647+
4648+ # ## anaconda
4649+
4650+ Anaconda is another popular tool to manage python packages.
4651+
4652+ Usage:
4653+
4654+ 1 . Make a Virtual Environment
4655+
4656+ conda create - n HelloWorld
4657+
4658+ 2 . To use the Virtual Environment, activate it by:
4659+
4660+ conda activate HelloWorld
4661+
4662+ Anything installed now will be specific to the project HelloWorld
4663+
4664+ 3 . Exit the Virtual Environment
4665+
4666+ conda deactivate
4667+
4668+
4669+ [* Return to the Top* ](# python-cheatsheet)
You can’t perform that action at this time.
0 commit comments