Skip to content

Commit 891024b

Browse files
author
gulu42
committed
Added virtual environments with anaconda
1 parent d9e45e7 commit 891024b

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff 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:
46434644
Find 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)

0 commit comments

Comments
 (0)