Skip to content

Commit 71b0cc2

Browse files
authored
Changed pipenv quote and added some links.
1 parent b510f64 commit 71b0cc2

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

blog_files/pysheet.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4107,7 +4107,7 @@ Usage:
41074107

41084108
### pipenv
41094109

4110-
> Pipenvthe officially recommended Python packaging tool from Python.org, free (as in freedom).
4110+
> [Pipenv](https://pipenv.readthedocs.io/en/latest/) is a tool that aims to bring the best of all packaging worlds (bundler, composer, npm, cargo, yarn, etc.) to the Python world. Windows is a first-class citizen, in our world.
41114111

41124112
1. Install pipenv
41134113

@@ -4133,3 +4133,26 @@ Usage:
41334133
exit
41344134

41354135
Find more information and a video in [docs.pipenv.org](https://docs.pipenv.org/).
4136+
4137+
### anaconda
4138+
4139+
[Anaconda](https://anaconda.org/) is another popular tool to manage python packages.
4140+
4141+
> Where packages, notebooks, projects and environments are shared.
4142+
Your place for free public conda package hosting.
4143+
4144+
Usage:
4145+
4146+
1. Make a Virtual Environment
4147+
4148+
conda create -n HelloWorld
4149+
4150+
2. To use the Virtual Environment, activate it by:
4151+
4152+
conda activate HelloWorld
4153+
4154+
Anything installed now will be specific to the project HelloWorld
4155+
4156+
3. Exit the Virtual Environment
4157+
4158+
conda deactivate

0 commit comments

Comments
 (0)